|
Server : LiteSpeed System : Linux srv526460274 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : kerao9884 ( 1082) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /home/backup/EOAmS/ |
Upload File : |
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: ECd7BNi4IbHnCX
-- ------------------------------------------------------
-- Server version 10.11.14-MariaDB-ubu2204
/*!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 utf8mb4 */;
/*!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 = utf8mb4 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
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 = utf8mb4 */;
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 NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`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=3 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
(2,1876,'Elias63','Elias63@gmail.com','','23.237.210.82','2025-10-28 09:20:15','2025-10-28 02:20:15','<a href=\"https://shorturl.fm/oJ2OR\" rel=\"nofollow ugc\">https://shorturl.fm/oJ2OR</a>',0,'1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',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 = utf8mb4 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) 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_litespeed_url`
--
DROP TABLE IF EXISTS `wp_litespeed_url`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_litespeed_url` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`url` varchar(500) NOT NULL,
`cache_tags` varchar(1000) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `url` (`url`(191)),
KEY `cache_tags` (`cache_tags`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_litespeed_url`
--
LOCK TABLES `wp_litespeed_url` WRITE;
/*!40000 ALTER TABLE `wp_litespeed_url` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_litespeed_url` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_litespeed_url_file`
--
DROP TABLE IF EXISTS `wp_litespeed_url_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_litespeed_url_file` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`url_id` bigint(20) NOT NULL,
`vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
`filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
`type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
`mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
`webp` tinyint(4) NOT NULL COMMENT 'webp=1',
`expired` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `filename` (`filename`),
KEY `type` (`type`),
KEY `url_id_2` (`url_id`,`vary`,`type`),
KEY `filename_2` (`filename`,`expired`),
KEY `url_id` (`url_id`,`expired`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_litespeed_url_file`
--
LOCK TABLES `wp_litespeed_url_file` WRITE;
/*!40000 ALTER TABLE `wp_litespeed_url_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_litespeed_url_file` 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 = utf8mb4 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=168964 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,'cron','a:11:{i:1762045518;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:1762063518;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762063816;a:3:{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:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762063819;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:1762067116;a:1:{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;}}}i:1762068916;a:1:{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;}}}i:1762070716;a:1:{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:1762098521;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762409121;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1762495518;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),
(2,'siteurl','https://lion288slot.com','on'),
(3,'home','https://lion288slot.com','on'),
(4,'blogname','Lion288 : Mission Digital Baru Level Up Cepat Jadi Champion','on'),
(5,'blogdescription','','on'),
(6,'users_can_register','0','on'),
(7,'admin_email','taikcicak10@gmail.com','on'),
(8,'start_of_week','1','on'),
(9,'use_balanceTags','0','on'),
(10,'use_smilies','1','on'),
(11,'require_name_email','','on'),
(12,'comments_notify','','on'),
(13,'posts_per_rss','10','on'),
(14,'rss_use_excerpt','0','on'),
(15,'mailserver_url','mail.example.com','on'),
(16,'mailserver_login','login@example.com','on'),
(17,'mailserver_pass','password','on'),
(18,'mailserver_port','110','on'),
(19,'default_category','1','on'),
(20,'default_comment_status','','on'),
(21,'default_ping_status','','on'),
(22,'default_pingback_flag','','on'),
(23,'posts_per_page','10','on'),
(24,'date_format','d/m/Y','on'),
(25,'time_format','H:i','on'),
(26,'links_updated_date_format','F j, Y g:i a','on'),
(27,'comment_moderation','','on'),
(28,'moderation_notify','','on'),
(29,'permalink_structure','/%postname%/','on'),
(30,'rewrite_rules','a:95:{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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=20&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','on'),
(31,'hack_file','0','on'),
(32,'blog_charset','UTF-8','on'),
(33,'moderation_keys','','off'),
(34,'active_plugins','a:1:{i:0;s:23:\"wp-compat/wp-compat.php\";}','on'),
(35,'category_base','','on'),
(36,'ping_sites','https://rpc.pingomatic.com/','on'),
(37,'comment_max_links','2','on'),
(38,'gmt_offset','','on'),
(39,'default_email_category','1','on'),
(40,'recently_edited','a:4:{i:0;s:106:\"/home/lion288slot.com/public_html/wp-content/themes/mabar88/inc/compatibility/edd/edd-common-functions.php\";i:2;s:69:\"/home/lion288slot.com/public_html/wp-content/themes/mabar88/style.css\";i:3;s:64:\"/home/lion288slot.com/public_html/wp-content/plugins/amp/amp.php\";i:4;s:0:\"\";}','off'),
(41,'template','mabar88','on'),
(42,'stylesheet','mabar88','on'),
(43,'comment_registration','','on'),
(44,'html_type','text/html','on'),
(45,'use_trackback','0','on'),
(46,'default_role','subscriber','on'),
(47,'db_version','60421','on'),
(48,'uploads_use_yearmonth_folders','1','on'),
(49,'upload_path','','on'),
(50,'blog_public','1','on'),
(51,'default_link_category','2','on'),
(52,'show_on_front','page','on'),
(53,'tag_base','','on'),
(54,'show_avatars','','on'),
(55,'avatar_rating','G','on'),
(56,'upload_url_path','','on'),
(57,'thumbnail_size_w','150','on'),
(58,'thumbnail_size_h','150','on'),
(59,'thumbnail_crop','1','on'),
(60,'medium_size_w','300','on'),
(61,'medium_size_h','300','on'),
(62,'avatar_default','mystery','on'),
(63,'large_size_w','1024','on'),
(64,'large_size_h','1024','on'),
(65,'image_default_link_type','none','on'),
(66,'image_default_size','','on'),
(67,'image_default_align','','on'),
(68,'close_comments_for_old_posts','','on'),
(69,'close_comments_days_old','14','on'),
(70,'thread_comments','','on'),
(71,'thread_comments_depth','5','on'),
(72,'page_comments','','on'),
(73,'comments_per_page','50','on'),
(74,'default_comments_page','newest','on'),
(75,'comment_order','asc','on'),
(76,'sticky_posts','a:0:{}','on'),
(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(80,'uninstall_plugins','a:2:{s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}','off'),
(81,'timezone_string','Asia/Jakarta','on'),
(82,'page_for_posts','0','on'),
(83,'page_on_front','20','on'),
(84,'default_post_format','0','on'),
(85,'link_manager_enabled','0','on'),
(86,'finished_splitting_shared_terms','1','on'),
(87,'site_icon','14','on'),
(88,'medium_large_size_w','768','on'),
(89,'medium_large_size_h','0','on'),
(90,'wp_page_for_privacy_policy','3','on'),
(91,'show_comments_cookies_opt_in','','on'),
(92,'admin_email_lifespan','1772749290','on'),
(93,'disallowed_keys','','off'),
(94,'comment_previously_approved','','on'),
(95,'auto_plugin_theme_update_emails','a:0:{}','off'),
(96,'auto_update_core_dev','enabled','on'),
(97,'auto_update_core_minor','enabled','on'),
(98,'auto_update_core_major','enabled','on'),
(99,'wp_force_deactivated_plugins','a:0:{}','off'),
(100,'wp_attachment_pages_enabled','0','on'),
(101,'initial_db_version','57155','on'),
(102,'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;}}}','auto'),
(103,'fresh_site','0','off'),
(104,'user_count','3','off'),
(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','auto'),
(106,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}','auto'),
(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'),
(125,'recovery_keys','a:0:{}','off'),
(126,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1724342835;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'),
(134,'litespeed.conf.__activation','-1','auto'),
(135,'litespeed.cloud._summary','{\"curr_request.ver_check\":0,\"last_request.ver_check\":1757618719,\"news.utime\":1759923818,\"curr_request.news\":0,\"last_request.news\":1759923818,\"ips_ts\":1741618333,\"ips_ts_runner\":1741618333,\"ips\":[\"102.221.36.98\",\"103.106.229.82\",\"103.106.229.94\",\"103.146.63.42\",\"103.152.118.219\",\"103.152.118.72\",\"103.164.203.163\",\"103.72.163.222\",\"103.75.117.169\",\"104.225.142.116\",\"104.244.77.37\",\"108.61.158.223\",\"108.61.200.94\",\"109.248.43.195\",\"135.148.120.32\",\"136.243.106.228\",\"139.84.230.39\",\"141.164.38.65\",\"145.239.252.65\",\"146.88.239.197\",\"147.78.0.165\",\"147.78.3.13\",\"147.78.3.161\",\"149.28.136.245\",\"149.28.47.113\",\"149.28.85.239\",\"152.228.171.66\",\"152.53.36.14\",\"152.53.38.14\",\"154.205.144.192\",\"155.138.221.81\",\"156.67.218.140\",\"157.90.154.114\",\"158.51.123.249\",\"162.254.117.80\",\"162.254.118.29\",\"163.182.174.161\",\"163.47.21.168\",\"164.52.202.100\",\"167.71.185.204\",\"167.88.61.211\",\"170.249.218.98\",\"178.17.171.177\",\"178.22.124.247\",\"178.22.124.251\",\"178.255.220.12\",\"18.192.146.200\",\"185.116.60.231\",\"185.116.60.232\",\"185.126.237.51\",\"185.186.78.89\",\"185.212.169.91\",\"185.228.26.40\",\"185.53.57.40\",\"185.53.57.89\",\"188.172.228.182\",\"188.172.229.113\",\"188.64.184.71\",\"190.92.176.5\",\"191.96.101.140\",\"192.248.156.201\",\"192.248.191.135\",\"192.99.38.117\",\"193.203.191.189\",\"194.163.134.104\",\"194.36.144.221\",\"195.231.17.141\",\"199.247.28.91\",\"199.59.247.242\",\"201.182.97.70\",\"202.61.226.253\",\"204.10.163.237\",\"209.124.84.191\",\"209.208.26.218\",\"211.23.143.87\",\"213.159.1.75\",\"213.183.48.170\",\"213.184.85.245\",\"216.238.104.48\",\"216.238.71.13\",\"23.95.73.167\",\"31.131.4.244\",\"31.22.115.186\",\"31.40.212.152\",\"34.247.229.180\",\"34.249.110.197\",\"38.101.149.196\",\"38.114.121.40\",\"38.54.30.228\",\"38.54.79.187\",\"38.60.253.237\",\"41.185.29.210\",\"41.223.52.170\",\"45.124.65.86\",\"45.248.77.61\",\"45.32.123.201\",\"45.32.183.112\",\"45.32.210.159\",\"45.32.67.144\",\"45.32.77.223\",\"45.63.67.181\",\"45.76.247.71\",\"45.76.252.131\",\"45.77.148.74\",\"45.77.165.216\",\"45.77.51.171\",\"46.250.220.133\",\"49.12.102.29\",\"5.134.119.103\",\"5.134.119.194\",\"5.188.183.13\",\"5.189.146.228\",\"51.81.186.219\",\"51.81.33.156\",\"54.246.224.74\",\"54.36.103.97\",\"61.219.247.87\",\"61.219.247.90\",\"64.176.163.166\",\"64.176.4.251\",\"64.227.16.93\",\"64.31.63.160\",\"65.108.104.232\",\"65.20.76.133\",\"65.21.81.50\",\"65.21.81.51\",\"66.42.124.101\",\"66.42.75.121\",\"67.219.99.102\",\"67.220.72.216\",\"69.50.95.216\",\"79.172.239.249\",\"81.31.156.245\",\"81.31.156.246\",\"86.105.14.231\",\"86.105.14.232\",\"89.147.110.130\",\"89.58.38.4\",\"91.148.135.53\",\"91.201.67.57\",\"91.228.7.67\",\"92.118.205.75\",\"94.75.232.90\",\"95.179.145.87\",\"95.179.245.162\",\"95.216.116.209\"]}','auto'),
(137,'litespeed.conf.hash','d8vUG8Xj8vo6GjMqSiyV7pwqEJGycVlK','auto'),
(138,'litespeed.conf.auto_upgrade','','auto'),
(139,'litespeed.conf.api_key','','auto'),
(140,'litespeed.conf.server_ip','','auto'),
(141,'litespeed.conf.guest','','auto'),
(142,'litespeed.conf.guest_optm','','auto'),
(143,'litespeed.conf.news','1','auto'),
(144,'litespeed.conf.guest_uas','[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"spider\",\"PTST\",\"HeadlessChrome\"]','auto'),
(145,'litespeed.conf.guest_ips','[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]','auto'),
(146,'litespeed.conf.cache','1','auto'),
(147,'litespeed.conf.cache-priv','1','auto'),
(148,'litespeed.conf.cache-commenter','1','auto'),
(149,'litespeed.conf.cache-rest','1','auto'),
(150,'litespeed.conf.cache-page_login','1','auto'),
(151,'litespeed.conf.cache-resources','1','auto'),
(152,'litespeed.conf.cache-mobile','','auto'),
(153,'litespeed.conf.cache-mobile_rules','[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]','auto'),
(154,'litespeed.conf.cache-browser','','auto'),
(155,'litespeed.conf.cache-exc_useragents','[]','auto'),
(156,'litespeed.conf.cache-exc_cookies','[]','auto'),
(157,'litespeed.conf.cache-exc_qs','[]','auto'),
(158,'litespeed.conf.cache-exc_cat','[]','auto'),
(159,'litespeed.conf.cache-exc_tag','[]','auto'),
(160,'litespeed.conf.cache-force_uri','[]','auto'),
(161,'litespeed.conf.cache-force_pub_uri','[]','auto'),
(162,'litespeed.conf.cache-priv_uri','[]','auto'),
(163,'litespeed.conf.cache-exc','[]','auto'),
(164,'litespeed.conf.cache-exc_roles','[]','auto'),
(165,'litespeed.conf.cache-drop_qs','[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]','auto'),
(166,'litespeed.conf.cache-ttl_pub','604800','auto'),
(167,'litespeed.conf.cache-ttl_priv','1800','auto'),
(168,'litespeed.conf.cache-ttl_frontpage','604800','auto'),
(169,'litespeed.conf.cache-ttl_feed','604800','auto'),
(170,'litespeed.conf.cache-ttl_rest','604800','auto'),
(171,'litespeed.conf.cache-ttl_browser','31557600','auto'),
(172,'litespeed.conf.cache-ttl_status','[\"404 3600\",\"500 600\"]','auto'),
(173,'litespeed.conf.cache-login_cookie','','auto'),
(174,'litespeed.conf.cache-ajax_ttl','[]','auto'),
(175,'litespeed.conf.cache-vary_cookies','[]','auto'),
(176,'litespeed.conf.cache-vary_group','[]','auto'),
(177,'litespeed.conf.purge-upgrade','1','auto'),
(178,'litespeed.conf.purge-stale','','auto'),
(179,'litespeed.conf.purge-post_all','','auto'),
(180,'litespeed.conf.purge-post_f','1','auto'),
(181,'litespeed.conf.purge-post_h','1','auto'),
(182,'litespeed.conf.purge-post_p','1','auto'),
(183,'litespeed.conf.purge-post_pwrp','1','auto'),
(184,'litespeed.conf.purge-post_a','1','auto'),
(185,'litespeed.conf.purge-post_y','','auto'),
(186,'litespeed.conf.purge-post_m','1','auto'),
(187,'litespeed.conf.purge-post_d','','auto'),
(188,'litespeed.conf.purge-post_t','1','auto'),
(189,'litespeed.conf.purge-post_pt','1','auto'),
(190,'litespeed.conf.purge-timed_urls','[]','auto'),
(191,'litespeed.conf.purge-timed_urls_time','','auto'),
(192,'litespeed.conf.purge-hook_all','[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]','auto'),
(193,'litespeed.conf.esi','','auto'),
(194,'litespeed.conf.esi-cache_admbar','1','auto'),
(195,'litespeed.conf.esi-cache_commform','1','auto'),
(196,'litespeed.conf.esi-nonce','[\"stats_nonce\",\"subscribe_nonce\"]','auto'),
(197,'litespeed.conf.util-instant_click','','auto'),
(198,'litespeed.conf.util-no_https_vary','','auto'),
(199,'litespeed.conf.debug-disable_all','','auto'),
(200,'litespeed.conf.debug','','auto'),
(201,'litespeed.conf.debug-ips','[\"127.0.0.1\"]','auto'),
(202,'litespeed.conf.debug-level','','auto'),
(203,'litespeed.conf.debug-filesize','3','auto'),
(204,'litespeed.conf.debug-cookie','','auto'),
(205,'litespeed.conf.debug-collapse_qs','','auto'),
(206,'litespeed.conf.debug-inc','[]','auto'),
(207,'litespeed.conf.debug-exc','[]','auto'),
(208,'litespeed.conf.debug-exc_strings','[]','auto'),
(209,'litespeed.conf.db_optm-revisions_max','0','auto'),
(210,'litespeed.conf.db_optm-revisions_age','0','auto'),
(211,'litespeed.conf.optm-css_min','','auto'),
(212,'litespeed.conf.optm-css_comb','','auto'),
(213,'litespeed.conf.optm-css_comb_ext_inl','1','auto'),
(214,'litespeed.conf.optm-ucss','','auto'),
(215,'litespeed.conf.optm-ucss_inline','','auto'),
(216,'litespeed.conf.optm-ucss_whitelist','[]','auto'),
(217,'litespeed.conf.optm-ucss_file_exc_inline','[]','auto'),
(218,'litespeed.conf.optm-ucss_exc','[]','auto'),
(219,'litespeed.conf.optm-css_exc','[]','auto'),
(220,'litespeed.conf.optm-js_min','','auto'),
(221,'litespeed.conf.optm-js_comb','','auto'),
(222,'litespeed.conf.optm-js_comb_ext_inl','1','auto'),
(223,'litespeed.conf.optm-js_delay_inc','[]','auto'),
(224,'litespeed.conf.optm-js_exc','[\"jquery.js\",\"jquery.min.js\"]','auto'),
(225,'litespeed.conf.optm-html_min','','auto'),
(226,'litespeed.conf.optm-html_lazy','[]','auto'),
(227,'litespeed.conf.optm-html_skip_comment','[]','auto'),
(228,'litespeed.conf.optm-qs_rm','','auto'),
(229,'litespeed.conf.optm-ggfonts_rm','','auto'),
(230,'litespeed.conf.optm-css_async','','auto'),
(231,'litespeed.conf.optm-ccss_per_url','','auto'),
(232,'litespeed.conf.optm-ccss_sep_posttype','[\"page\"]','auto'),
(233,'litespeed.conf.optm-ccss_sep_uri','[]','auto'),
(234,'litespeed.conf.optm-css_async_inline','1','auto'),
(235,'litespeed.conf.optm-css_font_display','','auto'),
(236,'litespeed.conf.optm-js_defer','','auto'),
(237,'litespeed.conf.optm-emoji_rm','','auto'),
(238,'litespeed.conf.optm-noscript_rm','','auto'),
(239,'litespeed.conf.optm-ggfonts_async','','auto'),
(240,'litespeed.conf.optm-exc_roles','[]','auto'),
(241,'litespeed.conf.optm-ccss_con','','auto'),
(242,'litespeed.conf.optm-js_defer_exc','[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]','auto'),
(243,'litespeed.conf.optm-gm_js_exc','[]','auto'),
(244,'litespeed.conf.optm-dns_prefetch','[]','auto'),
(245,'litespeed.conf.optm-dns_prefetch_ctrl','','auto'),
(246,'litespeed.conf.optm-dns_preconnect','[]','auto'),
(247,'litespeed.conf.optm-exc','[]','auto'),
(248,'litespeed.conf.optm-guest_only','1','auto'),
(249,'litespeed.conf.object','','auto'),
(250,'litespeed.conf.object-kind','','auto'),
(251,'litespeed.conf.object-host','localhost','auto'),
(252,'litespeed.conf.object-port','11211','auto'),
(253,'litespeed.conf.object-life','360','auto'),
(254,'litespeed.conf.object-persistent','1','auto'),
(255,'litespeed.conf.object-admin','1','auto'),
(256,'litespeed.conf.object-transients','1','auto'),
(257,'litespeed.conf.object-db_id','0','auto'),
(258,'litespeed.conf.object-user','','auto'),
(259,'litespeed.conf.object-pswd','','auto'),
(260,'litespeed.conf.object-global_groups','[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]','auto'),
(261,'litespeed.conf.object-non_persistent_groups','[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]','auto'),
(262,'litespeed.conf.discuss-avatar_cache','','auto'),
(263,'litespeed.conf.discuss-avatar_cron','','auto'),
(264,'litespeed.conf.discuss-avatar_cache_ttl','604800','auto'),
(265,'litespeed.conf.optm-localize','','auto'),
(266,'litespeed.conf.optm-localize_domains','[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]','auto'),
(267,'litespeed.conf.media-lazy','','auto'),
(268,'litespeed.conf.media-lazy_placeholder','','auto'),
(269,'litespeed.conf.media-placeholder_resp','','auto'),
(270,'litespeed.conf.media-placeholder_resp_color','#cfd4db','auto'),
(271,'litespeed.conf.media-placeholder_resp_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>','auto'),
(272,'litespeed.conf.media-lqip','','auto'),
(273,'litespeed.conf.media-lqip_qual','4','auto'),
(274,'litespeed.conf.media-lqip_min_w','150','auto'),
(275,'litespeed.conf.media-lqip_min_h','150','auto'),
(276,'litespeed.conf.media-placeholder_resp_async','1','auto'),
(277,'litespeed.conf.media-iframe_lazy','','auto'),
(278,'litespeed.conf.media-add_missing_sizes','','auto'),
(279,'litespeed.conf.media-lazy_exc','[]','auto'),
(280,'litespeed.conf.media-lazy_cls_exc','[\"wmu-preview-img\"]','auto'),
(281,'litespeed.conf.media-lazy_parent_cls_exc','[]','auto'),
(282,'litespeed.conf.media-iframe_lazy_cls_exc','[]','auto'),
(283,'litespeed.conf.media-iframe_lazy_parent_cls_exc','[]','auto'),
(284,'litespeed.conf.media-lazy_uri_exc','[]','auto'),
(285,'litespeed.conf.media-lqip_exc','[]','auto'),
(286,'litespeed.conf.media-vpi','','auto'),
(287,'litespeed.conf.media-vpi_cron','','auto'),
(288,'litespeed.conf.img_optm-auto','','auto'),
(289,'litespeed.conf.img_optm-cron','1','auto'),
(290,'litespeed.conf.img_optm-ori','1','auto'),
(291,'litespeed.conf.img_optm-rm_bkup','','auto'),
(292,'litespeed.conf.img_optm-webp','','auto'),
(293,'litespeed.conf.img_optm-lossless','','auto'),
(294,'litespeed.conf.img_optm-exif','1','auto'),
(295,'litespeed.conf.img_optm-webp_attr','[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]','auto'),
(296,'litespeed.conf.img_optm-webp_replace_srcset','','auto'),
(297,'litespeed.conf.img_optm-jpg_quality','82','auto'),
(298,'litespeed.conf.crawler','','auto'),
(299,'litespeed.conf.crawler-usleep','500','auto'),
(300,'litespeed.conf.crawler-run_duration','400','auto'),
(301,'litespeed.conf.crawler-run_interval','600','auto'),
(302,'litespeed.conf.crawler-crawl_interval','302400','auto'),
(303,'litespeed.conf.crawler-threads','3','auto'),
(304,'litespeed.conf.crawler-timeout','30','auto'),
(305,'litespeed.conf.crawler-load_limit','1','auto'),
(306,'litespeed.conf.crawler-sitemap','','auto'),
(307,'litespeed.conf.crawler-drop_domain','1','auto'),
(308,'litespeed.conf.crawler-map_timeout','120','auto'),
(309,'litespeed.conf.crawler-roles','[]','auto'),
(310,'litespeed.conf.crawler-cookies','[]','auto'),
(311,'litespeed.conf.misc-heartbeat_front','','auto'),
(312,'litespeed.conf.misc-heartbeat_front_ttl','60','auto'),
(313,'litespeed.conf.misc-heartbeat_back','','auto'),
(314,'litespeed.conf.misc-heartbeat_back_ttl','60','auto'),
(315,'litespeed.conf.misc-heartbeat_editor','','auto'),
(316,'litespeed.conf.misc-heartbeat_editor_ttl','15','auto'),
(317,'litespeed.conf.cdn','','auto'),
(318,'litespeed.conf.cdn-ori','[]','auto'),
(319,'litespeed.conf.cdn-ori_dir','[\"wp-content\",\"wp-includes\"]','auto'),
(320,'litespeed.conf.cdn-exc','[]','auto'),
(321,'litespeed.conf.cdn-quic','','auto'),
(322,'litespeed.conf.cdn-cloudflare','','auto'),
(323,'litespeed.conf.cdn-cloudflare_email','','auto'),
(324,'litespeed.conf.cdn-cloudflare_key','','auto'),
(325,'litespeed.conf.cdn-cloudflare_name','','auto'),
(326,'litespeed.conf.cdn-cloudflare_zone','','auto'),
(327,'litespeed.conf.cdn-mapping','[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]','auto'),
(328,'litespeed.conf.cdn-attr','[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]','auto'),
(329,'litespeed.conf.qc-token','','auto'),
(330,'litespeed.conf.qc-nameservers','','auto'),
(331,'litespeed.purge.queue','-1','auto'),
(332,'litespeed.purge.queue2','-1','auto'),
(342,'litespeed.gui.lscwp_whm_install','-1','auto'),
(343,'litespeed.gui.dismiss','-1','auto'),
(344,'litespeed.gui._summary','{\"new_version\":1724911819,\"score\":1725516619}','auto'),
(345,'litespeed.data.upgrading','-1','auto'),
(346,'litespeed.admin_display.messages','[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Berhasil menghapus seluruh cache.<\\/p><\\/div>\"]','auto'),
(366,'finished_updating_comment_type','1','auto'),
(509,'litespeed.optimize.timestamp_purge_css','1760063139','auto'),
(510,'WPLANG','id_ID','auto'),
(511,'new_admin_email','taikcicak10@gmail.com','auto'),
(534,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(535,'recently_activated','a:0:{}','off'),
(560,'yoast_migrations_free','a:1:{s:7:\"version\";s:6:\"26.1.1\";}','auto'),
(561,'wpseo','a:117:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:0;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:6:\"26.1.1\";s:16:\"previous_version\";s:4:\"26.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:43:\"5TvslZBJ2PSXAsRP6Jt1szRmmH9iFMvpe-dNSHfoj2c\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:12:\"ahrefsverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1724341721\";s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:23:\"https://lion288slot.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:1:{s:20:\"amp_validation_error\";s:20:\"amp_validation_error\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";s:10:\"1724341748\";s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1760002365;s:31:\"wpseo_unindexed_post_link_count\";i:1760002365;s:31:\"wpseo_unindexed_term_link_count\";i:1760002365;s:35:\"wpseo_total_unindexed_general_items\";i:1760002365;s:27:\"wpseo_total_unindexed_posts\";i:1757201332;s:27:\"wpseo_total_unindexed_terms\";i:1757201332;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:37:\"site_kit_tracking_setup_widget_loaded\";s:2:\"no\";s:41:\"site_kit_tracking_first_interaction_stage\";s:0:\"\";s:40:\"site_kit_tracking_last_interaction_stage\";s:0:\"\";s:52:\"site_kit_tracking_setup_widget_temporarily_dismissed\";s:2:\"no\";s:52:\"site_kit_tracking_setup_widget_permanently_dismissed\";s:2:\"no\";s:31:\"google_site_kit_feature_enabled\";b:0;s:25:\"ai_free_sparks_started_on\";s:4:\"null\";s:15:\"enable_llms_txt\";b:0;s:15:\"last_updated_on\";i:1759950337;}','auto'),
(562,'wpseo_titles','a:127:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:8:\"sc-colon\";s:16:\"title-home-wpseo\";s:17:\"%%title%% %%sep%%\";s:18:\"title-author-wpseo\";s:44:\"%%name%%, Pengarang di %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:59:\"Anda mencari %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:42:\"Laman tidak ditemukan %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:59:\"Artikel %%POSTLINK%% pertama kali tampil pada %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:32:\"Galat 404: Laman tidak ditemukan\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:11:\"Arsip untuk\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:7:\"Beranda\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:12:\"Anda mencari\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:17:\"%%title%% %%sep%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:17:\"%%title%% %%sep%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:50:\"%%term_title%% Arsip %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:20:\"%%term_title%% Arsip\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:50:\"%%term_title%% Arsip %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:20:\"%%term_title%% Arsip\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:50:\"%%term_title%% Arsip %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:20:\"%%term_title%% Arsip\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','auto'),
(563,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','auto'),
(580,'amp-options','a:17:{s:13:\"theme_support\";s:8:\"standard\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:9:\"analytics\";a:0:{}s:23:\"all_templates_supported\";b:1;s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:7:\"version\";s:5:\"2.5.5\";s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"paired_url_structure\";s:9:\"query_var\";s:17:\"plugin_configured\";b:1;s:24:\"delete_data_at_uninstall\";b:1;s:18:\"use_native_img_tag\";b:0;s:15:\"mobile_redirect\";b:1;s:17:\"late_defined_slug\";N;s:18:\"suppressed_plugins\";a:0:{}s:18:\"sandboxing_enabled\";b:0;s:16:\"sandboxing_level\";i:1;s:21:\"primary_theme_support\";N;}','off'),
(606,'amp_css_transient_monitor_time_series','a:14:{i:20250926;i:28;i:20250927;i:28;i:20250928;i:28;i:20250929;i:28;i:20250930;i:28;i:20251001;i:33;i:20251002;i:33;i:20251003;i:37;i:20251004;i:41;i:20251005;i:41;i:20251006;i:44;i:20251007;i:45;i:20251008;i:45;i:20251009;i:45;}','off'),
(607,'amp_url_validation_queue','a:3:{s:4:\"urls\";a:0:{}s:9:\"timestamp\";i:1759953757;s:3:\"env\";a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}}','auto'),
(928,'_transient_timeout_amp_remote_request_101623f47561580a914e5d56e153cf6c','3520678194','off'),
(929,'_transient_amp_remote_request_101623f47561580a914e5d56e153cf6c','s:2545:\"O:45:\"AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\":4:{s:51:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0body\";s:345:\"{\"ampRuntimeVersion\":\"012509031727000\",\"ampCssUrl\":\"https://cdn.ampproject.org/rtv/012509031727000/v0.css\",\"canaryPercentage\":\"0.005\",\"diversions\":[\"002509191850000\",\"022509031727000\",\"032509191850000\",\"042509301838000\",\"052509031727000\"],\"ltsRuntimeVersion\":\"012508201830000\",\"ltsCssUrl\":\"https://cdn.ampproject.org/rtv/012508201830000/v0.css\"}\";s:54:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0headers\";a:19:{s:13:\"accept-ranges\";s:5:\"bytes\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:23:\"content-security-policy\";s:700:\"default-src * blob: data:; script-src blob: https://cdn.ampproject.org/lts/ https://cdn.ampproject.org/rtv/ https://cdn.ampproject.org/sw/ https://cdn.ampproject.org/v0.js https://cdn.ampproject.org/v0.mjs https://cdn.ampproject.org/v0/ https://cdn.ampproject.org/viewer/; object-src \'none\'; style-src \'unsafe-inline\' https://cdn.ampproject.org/rtv/ https://cdn.materialdesignicons.com https://cdnjs.cloudflare.com/ajax/libs/font-awesome/ https://cloud.typography.com https://fast.fonts.net https://fonts.googleapis.com https://maxcdn.bootstrapcdn.com https://p.typekit.net https://pro.fontawesome.com https://use.fontawesome.com https://use.typekit.net; report-uri https://csp.withgoogle.com/csp/amp\";s:28:\"cross-origin-resource-policy\";s:12:\"cross-origin\";s:38:\"cross-origin-opener-policy-report-only\";s:48:\"same-origin; report-to=\"amphtml-china-available\"\";s:9:\"report-to\";s:142:\"{\"group\":\"amphtml-china-available\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/amphtml-china-available\"}]}\";s:19:\"timing-allow-origin\";s:1:\"*\";s:14:\"content-length\";s:3:\"345\";s:4:\"date\";s:29:\"Thu, 09 Oct 2025 07:04:57 GMT\";s:7:\"expires\";s:29:\"Thu, 09 Oct 2025 07:04:57 GMT\";s:13:\"cache-control\";s:17:\"public, max-age=0\";s:13:\"last-modified\";s:21:\"Invalid:9223372036854\";s:25:\"strict-transport-security\";s:44:\"max-age=31536000; includeSubDomains; preload\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"sffe\";s:16:\"x-xss-protection\";s:1:\"0\";s:7:\"alt-svc\";s:46:\"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000\";}s:58:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0status_code\";i:200;s:53:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0expiry\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2025-10-10 07:04:57.897353\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}\";','off'),
(930,'_transient_timeout_amp_remote_request_5602bb6bb0292910f56ad18ec5da3131','3520678194','off'),
(931,'_transient_amp_remote_request_5602bb6bb0292910f56ad18ec5da3131','s:12531:\"O:45:\"AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\":4:{s:51:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0body\";s:10280:\"html{overflow-x:hidden!important}html.i-amphtml-fie{height:100%!important;width:100%!important}html:not([amp4ads]),html:not([amp4ads]) body{height:auto!important}html:not([amp4ads]) body{margin:0!important}body{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}html.i-amphtml-singledoc.i-amphtml-embedded{-ms-touch-action:pan-y pinch-zoom;touch-action:pan-y pinch-zoom}html.i-amphtml-fie>body,html.i-amphtml-singledoc>body{overflow:visible!important}html.i-amphtml-fie:not(.i-amphtml-inabox)>body,html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body{position:relative!important}html.i-amphtml-ios-embed-legacy>body{overflow-x:hidden!important;overflow-y:auto!important;position:absolute!important}html.i-amphtml-ios-embed{overflow-y:auto!important;position:static}#i-amphtml-wrapper{overflow-x:hidden!important;overflow-y:auto!important;position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;margin:0!important;display:block!important}html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper{-webkit-overflow-scrolling:touch!important}#i-amphtml-wrapper>body{position:relative!important;border-top:1px solid transparent!important}#i-amphtml-wrapper+body{visibility:visible}#i-amphtml-wrapper+body .i-amphtml-lightbox-element,#i-amphtml-wrapper+body[i-amphtml-lightbox]{visibility:hidden}#i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element{visibility:visible}#i-amphtml-wrapper.i-amphtml-scroll-disabled,.i-amphtml-scroll-disabled{overflow-x:hidden!important;overflow-y:hidden!important}amp-instagram{padding:54px 0px 0px!important;background-color:#fff}amp-iframe iframe{box-sizing:border-box!important}[amp-access][amp-access-hide]{display:none}[subscriptions-dialog],body:not(.i-amphtml-subs-ready) [subscriptions-action],body:not(.i-amphtml-subs-ready) [subscriptions-section]{display:none!important}amp-experiment,amp-live-list>[update]{display:none}amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden{display:none!important}amp-list [fetch-error],amp-list[load-more] [load-more-button],amp-list[load-more] [load-more-end],amp-list[load-more] [load-more-failed],amp-list[load-more] [load-more-loading]{display:none}amp-list[diffable] div[role=list]{display:block}amp-story-page,amp-story[standalone]{min-height:1px!important;display:block!important;height:100%!important;margin:0!important;padding:0!important;overflow:hidden!important;width:100%!important}amp-story[standalone]{background-color:#000!important;position:relative!important}amp-story-page{background-color:#757575}amp-story .amp-active>div,amp-story .i-amphtml-loader-background{display:none!important}amp-story-page:not(:first-of-type):not([distance]):not([active]){transform:translateY(1000vh)!important}amp-autocomplete{position:relative!important;display:inline-block!important}amp-autocomplete>input,amp-autocomplete>textarea{padding:0.5rem;border:1px solid rgba(0,0,0,.33)}.i-amphtml-autocomplete-results,amp-autocomplete>input,amp-autocomplete>textarea{font-size:1rem;line-height:1.5rem}[amp-fx^=fly-in]{visibility:hidden}amp-script[nodom],amp-script[sandboxed]{position:fixed!important;top:0!important;width:1px!important;height:1px!important;overflow:hidden!important;visibility:hidden}\n/*# sourceURL=/css/ampdoc.css*/[hidden]{display:none!important}.i-amphtml-element{display:inline-block}.i-amphtml-blurry-placeholder{transition:opacity 0.3s cubic-bezier(0.0,0.0,0.2,1)!important;pointer-events:none}[layout=nodisplay]:not(.i-amphtml-element){display:none!important}.i-amphtml-layout-fixed,[layout=fixed][width][height]:not(.i-amphtml-layout-fixed){display:inline-block;position:relative}.i-amphtml-layout-responsive,[layout=responsive][width][height]:not(.i-amphtml-layout-responsive),[width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive){display:block;position:relative}.i-amphtml-layout-intrinsic,[layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic){display:inline-block;position:relative;max-width:100%}.i-amphtml-layout-intrinsic .i-amphtml-sizer{max-width:100%}.i-amphtml-intrinsic-sizer{max-width:100%;display:block!important}.i-amphtml-layout-container,.i-amphtml-layout-fixed-height,[layout=container],[layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height){display:block;position:relative}.i-amphtml-layout-fill,.i-amphtml-layout-fill.i-amphtml-notbuilt,[layout=fill]:not(.i-amphtml-layout-fill),body noscript>*{display:block;overflow:hidden!important;position:absolute;top:0;left:0;bottom:0;right:0}body noscript>*{position:absolute!important;width:100%;height:100%;z-index:2}body noscript{display:inline!important}.i-amphtml-layout-flex-item,[layout=flex-item]:not(.i-amphtml-layout-flex-item){display:block;position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.i-amphtml-layout-fluid{position:relative}.i-amphtml-layout-size-defined{overflow:hidden!important}.i-amphtml-layout-awaiting-size{position:absolute!important;top:auto!important;bottom:auto!important}i-amphtml-sizer{display:block!important}@supports (aspect-ratio:1/1){i-amphtml-sizer.i-amphtml-disable-ar{display:none!important}}.i-amphtml-blurry-placeholder,.i-amphtml-fill-content{display:block;height:0;max-height:100%;max-width:100%;min-height:100%;min-width:100%;width:0;margin:auto}.i-amphtml-layout-size-defined .i-amphtml-fill-content{position:absolute;top:0;left:0;bottom:0;right:0}.i-amphtml-replaced-content,.i-amphtml-screen-reader{padding:0!important;border:none!important}.i-amphtml-screen-reader{position:fixed!important;top:0px!important;left:0px!important;width:4px!important;height:4px!important;opacity:0!important;overflow:hidden!important;margin:0!important;display:block!important;visibility:visible!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:8px!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:12px!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:16px!important}.i-amphtml-unresolved{position:relative;overflow:hidden!important}.i-amphtml-select-disabled{-webkit-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.i-amphtml-notbuilt,[layout]:not(.i-amphtml-element),[width][height][heights]:not([layout]):not(.i-amphtml-element),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element){position:relative;overflow:hidden!important;color:transparent!important}.i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,[layout]:not([layout=container]):not(.i-amphtml-element)>*,[width][height][heights]:not([layout]):not(.i-amphtml-element)>*,[width][height][sizes]:not([layout]):not(.i-amphtml-element)>*{display:none}amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content{display:block}.i-amphtml-notbuilt:not(.i-amphtml-layout-container),[layout]:not([layout=container]):not(.i-amphtml-element),[width][height][heights]:not([layout]):not(.i-amphtml-element),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element){color:transparent!important;line-height:0!important}.i-amphtml-ghost{visibility:hidden!important}.i-amphtml-element>[placeholder],[layout]:not(.i-amphtml-element)>[placeholder],[width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],[width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder]{display:block;line-height:normal}.i-amphtml-element>[placeholder].amp-hidden,.i-amphtml-element>[placeholder].hidden{visibility:hidden}.i-amphtml-element:not(.amp-notsupported)>[fallback],.i-amphtml-layout-container>[placeholder].amp-hidden,.i-amphtml-layout-container>[placeholder].hidden{display:none}.i-amphtml-layout-size-defined>[fallback],.i-amphtml-layout-size-defined>[placeholder]{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;z-index:1}amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder]{z-index:auto}.i-amphtml-notbuilt>[placeholder]{display:block!important}.i-amphtml-hidden-by-media-query{display:none!important}.i-amphtml-element-error{background:red!important;color:#fff!important;position:relative!important}.i-amphtml-element-error:before{content:attr(error-message)}i-amp-scroll-container,i-amphtml-scroll-container{position:absolute;top:0;left:0;right:0;bottom:0;display:block}i-amp-scroll-container.amp-active,i-amphtml-scroll-container.amp-active{overflow:auto;-webkit-overflow-scrolling:touch}.i-amphtml-loading-container{display:block!important;pointer-events:none;z-index:1}.i-amphtml-notbuilt>.i-amphtml-loading-container{display:block!important}.i-amphtml-loading-container.amp-hidden{visibility:hidden}.i-amphtml-element>[overflow]{cursor:pointer;position:relative;z-index:2;visibility:hidden;display:initial;line-height:normal}.i-amphtml-layout-size-defined>[overflow]{position:absolute}.i-amphtml-element>[overflow].amp-visible{visibility:visible}template{display:none!important}.amp-border-box,.amp-border-box *,.amp-border-box :after,.amp-border-box :before{box-sizing:border-box}amp-pixel{display:none!important}amp-analytics,amp-auto-ads,amp-story-auto-ads{position:fixed!important;top:0!important;width:1px!important;height:1px!important;overflow:hidden!important;visibility:hidden}amp-story{visibility:hidden!important}html.i-amphtml-fie>amp-analytics{position:initial!important}[visible-when-invalid]:not(.visible),form [submit-error],form [submit-success],form [submitting]{display:none}amp-accordion{display:block!important}@media (min-width:1px){:where(amp-accordion>section)>:first-child{margin:0;background-color:#efefef;padding-right:20px;border:1px solid #dfdfdf}:where(amp-accordion>section)>:last-child{margin:0}}amp-accordion>section{float:none!important}amp-accordion>section>*{float:none!important;display:block!important;overflow:hidden!important;position:relative!important}amp-accordion,amp-accordion>section{margin:0}amp-accordion:not(.i-amphtml-built)>section>:last-child{display:none!important}amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child{display:block!important}\n/*# sourceURL=/css/ampshared.css*/\";s:54:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0headers\";a:20:{s:13:\"accept-ranges\";s:5:\"bytes\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:2:\"br\";s:12:\"content-type\";s:23:\"text/css; charset=UTF-8\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:23:\"content-security-policy\";s:700:\"default-src * blob: data:; script-src blob: https://cdn.ampproject.org/lts/ https://cdn.ampproject.org/rtv/ https://cdn.ampproject.org/sw/ https://cdn.ampproject.org/v0.js https://cdn.ampproject.org/v0.mjs https://cdn.ampproject.org/v0/ https://cdn.ampproject.org/viewer/; object-src \'none\'; style-src \'unsafe-inline\' https://cdn.ampproject.org/rtv/ https://cdn.materialdesignicons.com https://cdnjs.cloudflare.com/ajax/libs/font-awesome/ https://cloud.typography.com https://fast.fonts.net https://fonts.googleapis.com https://maxcdn.bootstrapcdn.com https://p.typekit.net https://pro.fontawesome.com https://use.fontawesome.com https://use.typekit.net; report-uri https://csp.withgoogle.com/csp/amp\";s:28:\"cross-origin-resource-policy\";s:12:\"cross-origin\";s:38:\"cross-origin-opener-policy-report-only\";s:48:\"same-origin; report-to=\"amphtml-china-available\"\";s:9:\"report-to\";s:142:\"{\"group\":\"amphtml-china-available\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/amphtml-china-available\"}]}\";s:19:\"timing-allow-origin\";s:1:\"*\";s:14:\"content-length\";s:4:\"1915\";s:4:\"date\";s:29:\"Thu, 09 Oct 2025 07:04:57 GMT\";s:7:\"expires\";s:29:\"Thu, 09 Oct 2025 07:04:57 GMT\";s:13:\"cache-control\";s:53:\"private, max-age=3000, stale-while-revalidate=1206600\";s:4:\"etag\";s:18:\"\"933ee34255abf511\"\";s:25:\"strict-transport-security\";s:44:\"max-age=31536000; includeSubDomains; preload\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"sffe\";s:16:\"x-xss-protection\";s:1:\"0\";s:7:\"alt-svc\";s:46:\"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000\";}s:58:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0status_code\";i:200;s:53:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0expiry\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2025-10-10 07:04:57.941655\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}\";','off'),
(949,'auto_update_plugins','a:10:{i:0;s:11:\"amp/amp.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:35:\"litespeed-cache/litespeed-cache.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";i:4;s:40:\"wordpress-seo-premium/wp-seo-premium.php\";i:5;s:25:\"wpseo-video/video-seo.php\";i:6;s:25:\"wpseo-local/local-seo.php\";i:7;s:39:\"wpseo-woocommerce/wpseo-woocommerce.php\";i:8;s:25:\"wpseo-news/wpseo-news.php\";i:9;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";}','off'),
(984,'current_theme','Mabar88 Satelit','auto'),
(985,'theme_mods_mabar88','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','on'),
(986,'theme_switched','','auto'),
(989,'astra-settings','a:3:{s:18:\"theme-auto-version\";s:5:\"3.7.9\";s:22:\"is_theme_queue_running\";b:0;s:33:\"_astra_pb_compatibility_completed\";b:1;}','auto'),
(1506,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":4,\"critical\":2}','on'),
(1592,'astra_partials_config_cache','a:2:{s:8:\"settings\";a:650:{s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:29:\"astra-settings[button-radius]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-site-title-tagline-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:5:\"image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:12:\"single-image\";i:1;s:17:\"single-title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[blog-single-meta]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:13:\"right-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-content-layout]\";a:4:{s:7:\"default\";s:23:\"content-boxed-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-container-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:1:{s:7:\"palette\";a:9:{i:0;s:7:\"#0170B9\";i:1;s:7:\"#3a3a3a\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F2F5F7\";i:7;s:7:\"#424242\";i:8;s:7:\"#000000\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:2:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:3:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#0170B9\";i:1;s:7:\"#3a3a3a\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F2F5F7\";i:7;s:7:\"#424242\";i:8;s:7:\"#000000\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0170B9\";i:1;s:7:\"#3a3a3a\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F2F5F7\";i:7;s:7:\"#424242\";i:8;s:7:\"#000000\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#0170B9\";i:1;s:7:\"#3a3a3a\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F2F5F7\";i:7;s:7:\"#424242\";i:8;s:7:\"#000000\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-blog-typography-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:47:\"astra-settings[font-size-archive-summary-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:35:\"astra-settings[body-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:39:\"astra-settings[headings-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[heading-typo-selector]\";a:4:{s:7:\"default\";s:2:\"h1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h3]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h3]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h4]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h4]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h5]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h5]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h6]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h6]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-sngle-blog-typography-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:37:\"astra-settings[font-size-entry-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[load-google-fonts-locally]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[preload-local-fonts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[flush-local-font-files]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-design-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:50:\"astra-settings[related-posts-title-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-line-height]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:58:\"astra-settings[related-posts-section-title-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:49:\"astra-settings[related-posts-meta-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:52:\"astra-settings[related-posts-content-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-disable-archive]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[different-transparent-logo-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[select-breadcrumb-source]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:41:\"astra-settings[breadcrumb-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[text-transform-button]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[theme-btn-line-height]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-btn-letter-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-above-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-above-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-below-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-below-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:65:\"astra-settings[astra-sidebar-widgets-header-widget-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-header-widget-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:65:\"astra-settings[astra-sidebar-widgets-header-widget-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-header-widget-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[mobile-header-toggle-border-radius]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:70;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:58:\"astra-settings[section-primary-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-primary-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[title_tagline-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[title_tagline-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-button1-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[header-button1-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-letter-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-hb-button-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-hb-button-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-html-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-html-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-html-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-html-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-menu-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-menu-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-menu1-submenu-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:43:\"astra-settings[header-menu1-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-menu-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-menu-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-menu2-submenu-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:43:\"astra-settings[header-menu2-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-search-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[section-header-search-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:36:\"https://lion288slot.com/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[section-header-account-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[section-header-account-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-hb-social-icons-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-hb-social-icons-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-social-1-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:49:\"astra-settings[header-mobile-menu-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[section-header-mobile-menu-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-header-mobile-menu-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-above-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-above-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-above-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:80;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-below-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-below-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-below-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-footer-copyright-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-footer-copyright-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-copyright-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-menu-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-menu-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-footer-menu-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-fb-social-icons-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-fb-social-icons-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-fb-social-icons-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-social-1-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#e6e6e6\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:58:\"astra-settings[section-primary-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-primary-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-primary-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[section-fb-html-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[section-fb-html-2-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[astra-sidebar-widgets-footer-widget-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[astra-sidebar-widgets-footer-widget-2-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-3-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-3-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[astra-sidebar-widgets-footer-widget-3-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-4-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[astra-sidebar-widgets-footer-widget-4-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[astra-sidebar-widgets-footer-widget-4-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:40:{s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:8:\"selector\";s:9:\"#masthead\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:21:\"header_builder_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:8:\"selector\";s:9:\"#masthead\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:21:\"header_builder_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5151;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:25:\"astra-settings[hba-stack]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:24:\"astra-settings[hb-stack]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:5172;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}','off'),
(3506,'wp_calendar_block_has_published_posts','1','auto'),
(6080,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"taikcicak10@gmail.com\";s:7:\"version\";s:5:\"6.8.3\";s:9:\"timestamp\";i:1759261093;}','off'),
(24727,'db_upgraded','','on'),
(24768,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"4b13b3c57ed8de79aff545dad9b6c0b2\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(40908,'_transient_timeout_amp_remote_request_f69a0a2df175d99409309fa839e865c6','3471945894','off'),
(40909,'_transient_amp_remote_request_f69a0a2df175d99409309fa839e865c6','s:42530:\"O:45:\"AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\":4:{s:51:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0body\";s:41469:\"@charset \"UTF-8\";address,blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}main,nav{display:block}progress{display:inline-block;vertical-align:baseline}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}.search .site-main .ast-search-submit{display:none}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*!\n * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com)\n */.ast-container{max-width:100%}.ast-container,.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-row{margin-left:-20px;margin-right:-20px}.ast-grid-common-col{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-float{float:left}@media (max-width:992px){.ast-width-sm-25{width:25%}.ast-width-md-50{width:50%}}@media (max-width:768px){.ast-width-md-25{width:25%}}.ast-full-width{width:100%}.ast-width-50{width:50%}@media (min-width:768px){.ast-width-md-4{width:33.3333333333%}.ast-width-md-16{width:16.6666666667%}.ast-width-md-6{width:50%;float:left}.ast-width-md-3{width:25%}.ast-width-md-66{width:66.6666666667%}}@media (min-width:769px){.ast-width-md-20{width:20%}}@media (min-width:992px){.ast-width-lg-33{width:33.3333333333%}.ast-width-lg-16{width:16.6666666667%}.ast-width-lg-50{width:50%}.ast-width-lg-66{width:66.6666666667%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:\"\" \"\"}blockquote:after,blockquote:before,q:after,q:before{content:\"\"}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:\"Courier 10 Pitch\",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,\"Andale Mono\",\"DejaVu Sans Mono\",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;text-align:center;display:block;margin-left:auto;margin-right:auto}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,\"Helvetica Neue\",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:\"Open Sans\",sans-serif}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{width:100%}#primary{margin:4em 0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-left:0;margin-right:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single:not(.ast-related-post){background-color:#fff}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-right:60px}.ast-left-sidebar #primary{padding-left:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-left:0;padding-right:0}.ast-right-sidebar #primary{padding-right:30px}.ast-left-sidebar #primary{padding-left:30px}}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{height:100%;-js-display:inline-flex;display:inline-flex}.main-navigation ul{list-style:none;margin:0;padding-left:0;position:relative}.main-header-menu .menu-link,.main-header-menu>a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{right:auto;left:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0;left:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;left:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{left:100%;right:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type{display:none}#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg{position:absolute;right:.6em;top:50%;transform:translate(0,-50%) rotate(270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-left:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type{margin-right:5px}.ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type{display:inline}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-left:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px}.ast-header-break-point .main-header-menu{background-color:#f9f9f9;border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-header-break-point .dropdown-menu-toggle{display:none}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:\"\\e5d2\";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2){display:none}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:\"\\e5cd\"}.ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1){display:none}.ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2){display:block}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.header-main-layout-1 .ast-main-header-bar-alignment{margin-left:auto}.site-navigation{height:100%}.site-header .menu-link *{transition:none}.ast-icon.icon-arrow svg{height:.6em;width:.6em;position:relative;margin-left:10px}.ast-icon.icon-search svg{height:1em;width:.9em;margin-top:3px;margin-right:2px}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.ast-header-break-point .ast-icon.icon-arrow svg{height:.85em;width:.95em;position:relative;margin-left:10px}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:right}.ast-icon svg{fill:currentColor}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem;padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 0 .3em .3em;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc( 2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .alignwide{margin-left:calc(-41vw + 50%);margin-right:calc(-41vw + 50%);max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-dots,.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-left:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-left:0}.ast-header-break-point .entry-content .alignwide{margin-left:auto;margin-right:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.no-widget-text{margin-bottom:0}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-left:20px}.widget_nav_menu ul ul.sub-menu a:after{left:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{left:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{left:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form>label{position:relative}.widget_search .search-form i{color:#3a3a3a}.widget_search .search-form button{position:absolute;top:0;right:15px;border:none;padding:0;cursor:pointer;background:0 0}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;right:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 45px 16px 15px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-left:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{left:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{left:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-right:none;border-left:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-builder-grid-row{display:grid;grid-template-columns:auto auto;align-items:center;grid-column-gap:20px;overflow-wrap:anywhere}.ast-builder-grid-row>.site-header-section{flex-wrap:nowrap}.ast-builder-footer-grid-columns{grid-column-gap:50px}.ast-builder-grid-row.ast-grid-center-col-layout{grid-template-columns:1fr auto 1fr}.ast-builder-layout-element{align-items:center}.ast-builder-grid-row.ast-grid-center-col-layout-only{-js-display:flex;display:flex;height:100%;justify-content:center}.ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center{flex-grow:1}.site-header-section{height:100%;min-height:0;align-items:center}.site-header-section .ast-main-header-bar-alignment{height:100%}.site-header-section>*{padding:0 10px}.site-header-section>div:first-child{padding-left:0}.site-header-section>div:last-child{padding-right:0}.site-header-section .ast-builder-menu{align-items:center}.ast-builder-layout-element.ast-header-search{height:auto}.ast-grid-right-center-section{justify-content:flex-start;flex-grow:1}.ast-grid-right-section{justify-content:flex-end}.ast-grid-right-section .ast-site-identity>:first-child{text-align:right}.ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child{text-align:left}.ast-grid-left-center-section{justify-content:flex-end;flex-grow:1}.ast-logo-title-inline .ast-site-identity{padding:1em 0;-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center;transition:all .2s linear}.ast-grid-section-center{justify-content:center}.ast-grid-section-center .ast-site-identity>:first-child{text-align:center}.ast-builder-social-element{line-height:1;color:#3a3a3a;background:0 0;vertical-align:middle;transition:all 10ms;margin-left:6px;margin-right:6px;justify-content:center;align-items:center}.ast-builder-social-element:hover{color:#0274be}.ast-builder-social-element .social-item-label{padding-left:6px}.ast-social-stack-desktop .ast-builder-social-element,.ast-social-stack-mobile .ast-builder-social-element,.ast-social-stack-tablet .ast-builder-social-element{margin-top:6px;margin-bottom:6px}.ahfb-svg-iconset{-js-display:inline-flex;display:inline-flex;align-self:center}.ahfb-svg-iconset svg{width:17px;height:17px;transition:none}.ahfb-svg-iconset svg>*{transition:none}.ast-footer-copyright p{margin-bottom:0}.ast-builder-grid-row-container{display:grid;align-content:center}.main-header-bar .main-header-bar-navigation{height:100%}.ast-nav-menu .sub-menu{line-height:1.45}.ast-builder-menu .main-navigation{padding:0}.ast-builder-menu .main-navigation>ul{align-self:center}.ast-footer-copyright,.ast-footer-social-wrap,.site-footer-focus-item{width:100%}#astra-footer-menu{margin:0;list-style:none;background:inherit}#astra-footer-menu>ul{margin:0;list-style:none;background:inherit}.ast-header-break-point #ast-mobile-header{display:block}.ast-header-break-point .main-header-bar-navigation{line-height:3}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:0;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before,.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .ast-nav-menu .sub-menu{line-height:3}.site-footer-section{justify-content:center}.site-footer-section>*{margin-bottom:10px}.site-footer-section>:last-child{margin-bottom:0}.site-primary-footer-wrap{padding-top:45px;padding-bottom:45px}.site-above-footer-wrap,.site-below-footer-wrap{padding-top:20px;padding-bottom:20px}.ast-hfb-header.ast-header-break-point .main-header-bar-navigation{width:100%;margin:0}.ast-hfb-header .menu-toggle.toggled .ast-mobile-svg{display:none}.ast-hfb-header .menu-toggle.toggled .ast-close-svg{display:block}.menu-toggle .ast-close-svg{display:none}.ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon{-js-display:inline-flex;display:inline-flex;align-self:center}.ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap{-js-display:inline-flex;display:inline-flex;align-self:center;margin-left:.4em}.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle{-js-display:flex;display:flex;align-items:center;width:auto;height:auto}.menu-toggle .mobile-menu-toggle-icon{-js-display:inline-flex;display:inline-flex;align-self:center}.menu-toggle .mobile-menu-wrap{-js-display:inline-flex;display:inline-flex;align-self:center;margin-left:.4em}.ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap{align-items:center;-js-display:flex;display:flex}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:.5em;align-items:center;-js-display:flex;display:flex}.ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding:.6em;padding-right:5.5em}@media (min-width:769px){.footer-nav-wrap .astra-footer-horizontal-menu li{margin:0}.footer-nav-wrap .astra-footer-horizontal-menu li:first-child a{padding-left:0}.footer-nav-wrap .astra-footer-horizontal-menu li:last-child a{padding-right:0}.footer-nav-wrap .astra-footer-horizontal-menu a{padding:0 .5em}}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.main-header-bar{margin-left:auto;margin-right:auto}.ast-desktop .main-header-menu.ast-menu-shadow .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-left:0;padding-right:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.site-branding{line-height:1;align-self:center}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{line-height:normal}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{flex:1;align-self:center}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul ul{left:auto;right:auto}.ast-header-break-point .main-navigation .stack-on-mobile li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-builder-menu{width:100%}.ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile{flex-wrap:wrap}.ast-desktop .main-header-menu>.menu-item .sub-menu:before{position:absolute;content:\'\';top:0;left:0;width:100%;transform:translateY(-100%)}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-left:0;padding-right:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 0 0 20px}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-left:3.33333em;padding-right:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-left:0;padding-right:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{left:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-left:0;padding-right:0}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-flex-grow-1{flex-grow:1}\";s:54:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0headers\";a:11:{s:13:\"cache-control\";s:22:\"public, max-age=604800\";s:7:\"expires\";s:29:\"Mon, 23 Dec 2024 18:42:27 GMT\";s:4:\"etag\";s:25:\"\"a1fd-66c761dc-2884d2;gz\"\";s:13:\"last-modified\";s:29:\"Thu, 22 Aug 2024 16:05:48 GMT\";s:12:\"content-type\";s:8:\"text/css\";s:13:\"accept-ranges\";s:5:\"bytes\";s:4:\"date\";s:29:\"Mon, 16 Dec 2024 18:42:27 GMT\";s:6:\"server\";s:9:\"LiteSpeed\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"alt-svc\";s:167:\"h3=\":443\"; ma=2592000, h3-29=\":443\"; ma=2592000, h3-Q050=\":443\"; ma=2592000, h3-Q046=\":443\"; ma=2592000, h3-Q043=\":443\"; ma=2592000, quic=\":443\"; ma=2592000; v=\"43,46\"\";}s:58:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0status_code\";i:200;s:53:\"\0AmpProject\\AmpWP\\RemoteRequest\\CachedResponse\0expiry\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2024-12-23 18:42:27.919294\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}\";','off'),
(84089,'litespeed.conf.qc-cname','','auto'),
(96958,'litespeed.conf.optm-ccss_whitelist','[]','auto'),
(100545,'recovery_mode_email_last_sent','1758994588','auto'),
(121210,'litespeed.conf.cdn-cloudflare_clear','','auto'),
(134760,'wpseo_llmstxt','a:7:{s:23:\"llms_txt_selection_mode\";s:4:\"auto\";s:13:\"about_us_page\";i:0;s:12:\"contact_page\";i:0;s:10:\"terms_page\";i:0;s:19:\"privacy_policy_page\";i:0;s:9:\"shop_page\";i:0;s:20:\"other_included_pages\";a:0:{}}','auto'),
(140471,'can_compress_scripts','0','on'),
(148216,'litespeed.conf.media-auto_rescale_ori','','auto'),
(148217,'litespeed.conf.debug-disable_tmp','0','auto'),
(153766,'litespeed.conf.img_optm-sizes_skipped','[]','auto'),
(153943,'litespeed.conf._version','7.5.0.1','auto'),
(159768,'_transient_timeout_amp-parsed-stylesheet-v40-927918eee01746886fbf63547f144675','1761980808','off'),
(159769,'_transient_amp-parsed-stylesheet-v40-927918eee01746886fbf63547f144675','a:8:{s:6:\"tokens\";a:14:{i:0;a:2:{i:0;a:3:{s:20:\".amp-wp-unknown-size\";a:1:{i:1;a:1:{i:0;s:19:\"amp-wp-unknown-size\";}}s:30:\"amp-anim.amp-wp-enforced-sizes\";a:2:{i:1;a:1:{i:0;s:21:\"amp-wp-enforced-sizes\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:29:\"amp-img.amp-wp-enforced-sizes\";a:2:{i:1;a:1:{i:0;s:21:\"amp-wp-enforced-sizes\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}}i:1;a:1:{i:0;s:18:\"object-fit:contain\";}}i:1;a:2:{i:0;a:1:{s:30:\"body amp-audio:not([controls])\";a:1:{i:0;a:2:{i:0;s:4:\"body\";i:1;s:9:\"amp-audio\";}}}i:1;a:2:{i:0;s:20:\"display:inline-block\";i:1;s:11:\"height:auto\";}}i:2;a:2:{i:0;a:1:{s:30:\".amp-wp-default-form-message>p\";a:2:{i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:2:{i:0;s:12:\"margin:1em 0\";i:1;s:12:\"padding:.5em\";}}i:3;a:2:{i:0;a:2:{s:70:\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\";a:2:{i:3;a:1:{i:0;s:14:\"submit-success\";}i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}}s:42:\".amp-wp-default-form-message[submitting]>p\";a:3:{i:3;a:1:{i:0;s:10:\"submitting\";}i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:17:\"font-style:italic\";}}i:4;a:2:{i:0;a:1:{s:76:\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\";a:2:{i:3;a:1:{i:0;s:14:\"submit-success\";}i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}}}i:1;a:3:{i:0;s:24:\"background-color:#90ee90\";i:1;s:22:\"border:1px solid green\";i:2;s:10:\"color:#000\";}}i:5;a:2:{i:0;a:1:{s:44:\".amp-wp-default-form-message[submit-error]>p\";a:2:{i:3;a:1:{i:0;s:12:\"submit-error\";}i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}}}i:1;a:3:{i:0;s:24:\"background-color:#ffb6c1\";i:1;s:20:\"border:1px solid red\";i:2;s:10:\"color:#000\";}}i:6;a:2:{i:0;a:1:{s:52:\".amp-wp-default-form-message[submit-success]>p:empty\";a:2:{i:3;a:1:{i:0;s:14:\"submit-success\";}i:1;a:1:{i:0;s:27:\"amp-wp-default-form-message\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:7;a:2:{i:0;a:1:{s:36:\"amp-carousel .amp-wp-gallery-caption\";a:2:{i:1;a:1:{i:0;s:22:\"amp-wp-gallery-caption\";}i:0;a:1:{i:0;s:12:\"amp-carousel\";}}}i:1;a:9:{i:0;s:31:\"background-color:rgba(0,0,0,.5)\";i:1;s:8:\"bottom:0\";i:2;s:10:\"color:#fff\";i:3;s:6:\"left:0\";i:4;s:15:\"margin-bottom:0\";i:5;s:12:\"padding:1rem\";i:6;s:17:\"position:absolute\";i:7;s:7:\"right:0\";i:8;s:17:\"text-align:center\";}}i:8;a:2:{i:0;a:1:{s:38:\"amp-carousel .amp-wp-gallery-caption a\";a:2:{i:1;a:1:{i:0;s:22:\"amp-wp-gallery-caption\";}i:0;a:2:{i:0;s:12:\"amp-carousel\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:inherit\";}}i:9;a:2:{i:0;a:2:{s:41:\".wp-block-gallery[data-amp-carousel=true]\";a:2:{i:3;a:1:{i:0;s:17:\"data-amp-carousel\";}i:1;a:1:{i:0;s:16:\"wp-block-gallery\";}}s:59:\".wp-block-gallery[data-amp-carousel=true].has-nested-images\";a:2:{i:3;a:1:{i:0;s:17:\"data-amp-carousel\";}i:1;a:2:{i:0;s:16:\"wp-block-gallery\";i:1;s:17:\"has-nested-images\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:15:\"flex-wrap:unset\";}}i:10;a:2:{i:0;a:1:{s:9:\".wp-video\";a:1:{i:1;a:1:{i:0;s:8:\"wp-video\";}}}i:1;a:2:{i:0;s:19:\"margin-bottom:1.5em\";i:1;s:14:\"max-width:100%\";}}i:11;a:2:{i:0;a:2:{s:25:\".wp-block-video amp-video\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-video\";}i:0;a:1:{i:0;s:9:\"amp-video\";}}s:27:\".wp-block-video amp-youtube\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-video\";}i:0;a:1:{i:0;s:11:\"amp-youtube\";}}}i:1;a:1:{i:0;s:11:\"height:auto\";}}i:12;a:2:{i:0;a:1:{s:16:\"button[overflow]\";a:2:{i:3;a:1:{i:0;s:8:\"overflow\";}i:0;a:1:{i:0;s:6:\"button\";}}}i:1;a:1:{i:0;s:8:\"bottom:0\";}}i:13;a:2:{i:0;a:8:{s:12:\"amp-anim img\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:17:\"amp-anim noscript\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:17:\"amp-iframe iframe\";a:1:{i:0;a:1:{i:0;s:10:\"amp-iframe\";}}s:19:\"amp-iframe noscript\";a:1:{i:0;a:1:{i:0;s:10:\"amp-iframe\";}}s:11:\"amp-img img\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:16:\"amp-img noscript\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:18:\"amp-video noscript\";a:1:{i:0;a:1:{i:0;s:9:\"amp-video\";}}s:15:\"amp-video video\";a:1:{i:0;a:1:{i:0;s:9:\"amp-video\";}}}i:1;a:3:{i:0;s:23:\"image-rendering:inherit\";i:1;s:18:\"object-fit:inherit\";i:2;s:23:\"object-position:inherit\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"d9cbcea123ed980237b7ccf844b62f01\";s:10:\"parse_time\";d:0.01878213882446289;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160021,'_transient_timeout_amp-parsed-stylesheet-v40-531443535ac3fece28a8cb97e9e40f33','1762056014','off'),
(160022,'_transient_amp-parsed-stylesheet-v40-531443535ac3fece28a8cb97e9e40f33','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-22abcbf:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-22abcbf\";}}}i:1;a:6:{i:0;s:18:\"background:#f9f9f9\";i:1;s:21:\"border:1px solid #aaa\";i:2;s:13:\"display:table\";i:3;s:17:\"margin-bottom:1em\";i:4;s:11:\"padding:1em\";i:5;s:11:\"width:350px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"4cf7b75a293c632457bc6362b882fa3a\";s:10:\"parse_time\";d:0.01877903938293457;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160023,'_transient_timeout_amp-parsed-stylesheet-v40-26fa9e12084c0e78f9fa163c68b60ddc','1762056020','off'),
(160024,'_transient_amp-parsed-stylesheet-v40-26fa9e12084c0e78f9fa163c68b60ddc','a:8:{s:6:\"tokens\";a:817:{i:0;s:2678:\"@font-face{font-family:\"litespeedfont\";src:url(\"data:application/font-woff;base64,d09GRgABAAAAAAd8AAsAAAAABzAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFKmNtYXAAAAFoAAAAVAAAAFQXVtKHZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAywAAAMsC7+w5mhlYWQAAATwAAAANgAAADYNxQCSaGhlYQAABSgAAAAkAAAAJAe+A8ZobXR4AAAFTAAAABQAAAAUCgAABWxvY2EAAAVgAAAADAAAAAwAKAGqbWF4cAAABWwAAAAgAAAAIAAOAX5uYW1lAAAFjAAAAc4AAAHOiN8uy3Bvc3QAAAdcAAAAIAAAACAAAwAAAAMDAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkA//3//wAAAAAAIOkA//3//wAB/+MXBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAACAAF/8QD/AO7AIAAxAFEAWkBbgFyAXcBewAAATA0MTQmMTA0JzgBNSImOQEBOAExLgEjIgYHOAE5AQEwBiMUMDEGFDEwBhUwFDEcARUcARUwFDEUFjEwFBc4ARUyFjkBATAWFTAyMTAWMzAyFTAyMzIWMzI2MzoBMTQyMTI2MTAyMTQ2OQEBMDYzNDAxNjQxMDY1MDQxNDY1JjQ1BzEVBzgBMQE4ATEwBjEjMCIxMCIxMCIxMCYxOAExATgBMSc1MDQxMDQ5ATUxNzgBMQEwNjMyFjEBOAExFxUwFDEwFDEnMCIxMDQxMDQxMCIxNDAnMSc4ATEuASMiBgc4ATEHBjAVMCIxMBQxMBQxMCIxHAExMBQVMDIxMBQxMBQxMDIxFDAXMRcWMDM4ARUwMjE4ATEyMBU6ATEwMjM0MDM4ATEwMjE0MDEyMDcxNzYwNTAyMTA0MTA0MTgBMzwBMTA0NScHFzgBMRYUFxYGDwEOASMiJicmNj8BJyY2PwE+ATMyFhcWBgcFFxUBMxMHIwEBMwE1NzUnNQED+wEBAQH+FAIGAwMGAv4UAQEBAQEBAQEB7AIBAQEBAQEBAQEBAQEBAQEBAQECAewBAQEBAQFOAf5XAQEBAQEB/lcBAQGpAgEBAgGpAbABAQH0AgICAgIC9AEBAQEBAfQBAQEBAQEBAQEBAQH0AQEBoE8rAQEBAgSBAgQDBAYBAgEDTysFAwWBAgQEAwYBAgED/oz6/sw6+vo6ATQBNDb+zP7+ATgBwwEBAQEBAQIB7AICAgL+FAIBAQEBAQEBAQEBAQEBAQEBAQEC/hQBAQEBAQEBAQEBAewCAQEBAQEBAQEBAQEBBAEB/lcBAQGpAQEBAQEBAakBAf5XAQEBAQMBAQEB9AECAgH0AQEBAQEBAQEBAQEB9AEBAQEBAfQBAQEBAQEBAYRkPQECAQcLA2MCAgQDAwgDZD4GDgViAgIEAwMIA6P5OgEzATP6ATT+lP7MNv44/jb+zAABAAAAAQAAiK6LiV8PPPUACwQAAAAAANVU3gsAAAAA1VTeCwAA/8QD/AO7AAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAP8AAEAAAAAAAAAAAAAAAAAAAAFBAAAAAAAAAAAAAAAAgAAAAQAAAUAAAAAAAoAFAAeAZYAAQAAAAUBfAAIAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAA0AAAABAAAAAAACAAcAlgABAAAAAAADAA0ASAABAAAAAAAEAA0AqwABAAAAAAAFAAsAJwABAAAAAAAGAA0AbwABAAAAAAAKABoA0gADAAEECQABABoADQADAAEECQACAA4AnQADAAEECQADABoAVQADAAEECQAEABoAuAADAAEECQAFABYAMgADAAEECQAGABoAfAADAAEECQAKADQA7GxpdGVzcGVlZGZvbnQAbABpAHQAZQBzAHAAZQBlAGQAZgBvAG4AdFZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGxpdGVzcGVlZGZvbnQAbABpAHQAZQBzAHAAZQBlAGQAZgBvAG4AdGxpdGVzcGVlZGZvbnQAbABpAHQAZQBzAHAAZQBlAGQAZgBvAG4AdFJlZ3VsYXIAUgBlAGcAdQBsAGEAcmxpdGVzcGVlZGZvbnQAbABpAHQAZQBzAHAAZQBlAGQAZgBvAG4AdEZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\");font-weight:normal;font-style:normal}\";i:1;a:2:{i:0;a:3:{s:86:\"#adminmenu #toplevel_page_lscache-settings .menu-icon-generic div.wp-menu-image:before\";a:3:{i:1;a:2:{i:0;s:17:\"menu-icon-generic\";i:1;s:13:\"wp-menu-image\";}i:2;a:2:{i:0;s:9:\"adminmenu\";i:1;s:30:\"toplevel_page_lscache-settings\";}i:0;a:1:{i:0;s:3:\"div\";}}s:79:\"#adminmenu #toplevel_page_litespeed .menu-icon-generic div.wp-menu-image:before\";a:3:{i:1;a:2:{i:0;s:17:\"menu-icon-generic\";i:1;s:13:\"wp-menu-image\";}i:2;a:2:{i:0;s:9:\"adminmenu\";i:1;s:23:\"toplevel_page_litespeed\";}i:0;a:1:{i:0;s:3:\"div\";}}s:39:\".litespeed-top-toolbar .ab-icon::before\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-top-toolbar\";i:1;s:7:\"ab-icon\";}}}i:1;a:9:{i:0;s:13:\"content:\"\"\";i:1;s:10:\"speak:none\";i:2;s:17:\"font-style:normal\";i:3;s:18:\"font-weight:normal\";i:4;s:19:\"font-variant:normal\";i:5;s:19:\"text-transform:none\";i:6;s:13:\"line-height:1\";i:7;s:34:\"-webkit-font-smoothing:antialiased\";i:8;s:33:\"-moz-osx-font-smoothing:grayscale\";}}i:2;a:2:{i:0;a:3:{s:112:\"#adminmenu #toplevel_page_lscache-settings .menu-icon-generic div.wp-menu-image:before:not(#_#_#_#_#_#_#_#_#_#_)\";a:3:{i:1;a:2:{i:0;s:17:\"menu-icon-generic\";i:1;s:13:\"wp-menu-image\";}i:2;a:2:{i:0;s:9:\"adminmenu\";i:1;s:30:\"toplevel_page_lscache-settings\";}i:0;a:1:{i:0;s:3:\"div\";}}s:105:\"#adminmenu #toplevel_page_litespeed .menu-icon-generic div.wp-menu-image:before:not(#_#_#_#_#_#_#_#_#_#_)\";a:3:{i:1;a:2:{i:0;s:17:\"menu-icon-generic\";i:1;s:13:\"wp-menu-image\";}i:2;a:2:{i:0;s:9:\"adminmenu\";i:1;s:23:\"toplevel_page_litespeed\";}i:0;a:1:{i:0;s:3:\"div\";}}s:61:\".litespeed-top-toolbar .ab-icon::before:not(#_#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-top-toolbar\";i:1;s:7:\"ab-icon\";}}}i:1;a:1:{i:0;s:27:\"font-family:\"litespeedfont\"\";}}i:3;a:2:{i:0;a:1:{s:65:\"#wpadminbar .litespeed-top-toolbar .ab-icon.icon_disabled::before\";a:2:{i:1;a:3:{i:0;s:21:\"litespeed-top-toolbar\";i:1;s:7:\"ab-icon\";i:2;s:13:\"icon_disabled\";}i:2;a:1:{i:0;s:10:\"wpadminbar\";}}}i:1;a:1:{i:0;s:13:\"color:#d9534f\";}}i:4;a:2:{i:0;a:1:{s:29:\"*[litespeed-accesskey]:before\";a:1:{i:3;a:1:{i:0;s:19:\"litespeed-accesskey\";}}}i:1;a:1:{i:0;s:42:\"content:\"[\" attr(litespeed-accesskey) \"] \"\";}}i:5;a:2:{i:0;a:1:{s:44:\"input[type=\'checkbox\'].litespeed-tiny-toggle\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:14:{i:0;s:23:\"-webkit-appearance:none\";i:1;s:20:\"-moz-appearance:none\";i:2;s:15:\"appearance:none\";i:3;s:39:\"-webkit-tap-highlight-color:transparent\";i:4;s:10:\"width:auto\";i:5;s:11:\"height:auto\";i:6;s:21:\"vertical-align:middle\";i:7;s:17:\"position:relative\";i:8;s:8:\"border:0\";i:9;s:9:\"outline:0\";i:10;s:14:\"cursor:pointer\";i:11;s:12:\"margin:0 4px\";i:12;s:15:\"background:none\";i:13;s:15:\"box-shadow:none\";}}i:6;a:2:{i:0;a:1:{s:50:\"input[type=\'checkbox\'].litespeed-tiny-toggle:focus\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:7;a:2:{i:0;a:1:{s:50:\"input[type=\'checkbox\'].litespeed-tiny-toggle:after\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:11:{i:0;s:10:\"content:\"\"\";i:1;s:13:\"font-size:8px\";i:2;s:15:\"font-weight:400\";i:3;s:16:\"line-height:18px\";i:4;s:17:\"text-indent:-14px\";i:5;s:10:\"color:#fff\";i:6;s:10:\"width:36px\";i:7;s:11:\"height:18px\";i:8;s:20:\"display:inline-block\";i:9;s:24:\"background-color:#a7aaad\";i:10;s:18:\"border-radius:72px\";}}i:8;a:2:{i:0;a:1:{s:51:\"input[type=\'checkbox\'].litespeed-tiny-toggle:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:10:{i:0;s:10:\"content:\"\"\";i:1;s:10:\"width:14px\";i:2;s:11:\"height:14px\";i:3;s:13:\"display:block\";i:4;s:17:\"position:absolute\";i:5;s:7:\"top:2px\";i:6;s:8:\"left:2px\";i:7;s:8:\"margin:0\";i:8;s:17:\"border-radius:50%\";i:9;s:21:\"background-color:#fff\";}}i:9;a:2:{i:0;a:1:{s:59:\"input[type=\'checkbox\'].litespeed-tiny-toggle:checked:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:9:\"left:20px\";i:1;s:8:\"margin:0\";i:2;s:21:\"background-color:#fff\";}}i:10;a:2:{i:0;a:5:{s:44:\"input[type=\'checkbox\'].litespeed-tiny-toggle\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}s:51:\"input[type=\'checkbox\'].litespeed-tiny-toggle:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}s:50:\"input[type=\'checkbox\'].litespeed-tiny-toggle:after\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}s:59:\"input[type=\'checkbox\'].litespeed-tiny-toggle:checked:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}s:58:\"input[type=\'checkbox\'].litespeed-tiny-toggle:checked:after\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:20:\"transition:ease .15s\";}}i:11;a:2:{i:0;a:1:{s:58:\"input[type=\'checkbox\'].litespeed-tiny-toggle:checked:after\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:24:\"background-color:#2271b1\";}}i:12;a:2:{i:0;a:1:{s:91:\".block-editor__container input[type=\'checkbox\'].litespeed-tiny-toggle:not(#_#_#_#_#_#_#_#_)\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:23:\"block-editor__container\";i:1;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:13;a:2:{i:0;a:1:{s:76:\".block-editor__container input[type=\'checkbox\'].litespeed-tiny-toggle:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:23:\"block-editor__container\";i:1;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:2:{i:0;s:7:\"top:5px\";i:1;s:8:\"left:7px\";}}i:14;a:2:{i:0;a:1:{s:84:\".block-editor__container input[type=\'checkbox\'].litespeed-tiny-toggle:checked:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:23:\"block-editor__container\";i:1;s:21:\"litespeed-tiny-toggle\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:9:\"left:23px\";}}i:15;a:2:{i:0;a:1:{s:22:\".litespeed_icon:before\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed_icon\";}}}i:1;a:11:{i:0;s:10:\"content:\"\"\";i:1;s:128:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/lscwp_grayscale_font-icon_22px.svg\")\";i:2;s:20:\"background-size:22px\";i:3;s:27:\"background-repeat:no-repeat\";i:4;s:10:\"width:22px\";i:5;s:11:\"height:22px\";i:6;s:21:\"vertical-align:middle\";i:7;s:20:\"display:inline-block\";i:8;s:17:\"position:absolute\";i:9;s:8:\"left:5px\";i:10;s:7:\"top:8px\";}}i:16;a:2:{i:0;a:1:{s:27:\".rtl .litespeed_icon:before\";a:1:{i:1;a:2:{i:0;s:3:\"rtl\";i:1;s:14:\"litespeed_icon\";}}}i:1;a:2:{i:0;s:12:\"left:initial\";i:1;s:9:\"right:5px\";}}i:17;a:2:{i:0;a:1:{s:15:\".litespeed_icon\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed_icon\";}}}i:1;a:1:{i:0;s:17:\"position:relative\";}}i:18;a:2:{i:0;a:1:{s:35:\".litespeed_icon:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed_icon\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:19;a:2:{i:0;a:1:{s:20:\".rtl .litespeed_icon\";a:1:{i:1;a:2:{i:0;s:3:\"rtl\";i:1;s:14:\"litespeed_icon\";}}}i:1;a:1:{i:0;s:18:\"padding-right:40px\";}}i:20;a:2:{i:0;a:1:{s:20:\".litespeed-quic-icon\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-quic-icon\";}}}i:1;a:6:{i:0;s:119:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/quic-cloud-icon-16x16.svg\")\";i:1;s:27:\"background-repeat:no-repeat\";i:2;s:10:\"width:16px\";i:3;s:11:\"height:16px\";i:4;s:21:\"vertical-align:middle\";i:5;s:20:\"display:inline-block\";}}i:21;a:2:{i:0;a:1:{s:14:\".litespeed-row\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-row\";}}}i:1;a:1:{i:0;s:14:\"margin-top:5px\";}}i:22;a:2:{i:0;a:1:{s:16:\".litespeed-reset\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-reset\";}}}i:1;a:1:{i:0;s:13:\"width:initial\";}}i:23;a:2:{i:0;a:1:{s:17:\".litespeed-inline\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-inline\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:24;a:2:{i:0;a:1:{s:15:\".litespeed-flex\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-flex\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:25;a:2:{i:0;a:1:{s:25:\".litespeed-flex-container\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-flex-container\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:14:\"flex-wrap:wrap\";i:2;s:10:\"width:100%\";i:3;s:11:\"height:auto\";}}i:26;a:2:{i:0;a:1:{s:28:\".litespeed-flex-align-center\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-flex-align-center\";}}}i:1;a:1:{i:0;s:18:\"align-items:center\";}}i:27;a:2:{i:0;a:1:{s:29:\".litespeed-flex-container > *\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-flex-container\";}}}i:1;a:1:{i:0;s:21:\"box-sizing:border-box\";}}i:28;a:2:{i:0;a:1:{s:34:\".litespeed-flex-container--reverse\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-flex-container--reverse\";}}}i:1;a:1:{i:0;s:26:\"flex-direction:row-reverse\";}}i:29;a:2:{i:0;a:1:{s:57:\".litespeed-flex-container .litespeed-icon-vertical-middle\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-flex-container\";i:1;s:30:\"litespeed-icon-vertical-middle\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:30;a:2:{i:0;a:1:{s:19:\".litespeed-row-flex\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-row-flex\";}}}i:1;a:1:{i:0;s:19:\"display:inline-flex\";}}i:31;a:2:{i:0;a:1:{s:20:\".litespeed-flex-wrap\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-flex-wrap\";}}}i:1;a:1:{i:0;s:14:\"flex-wrap:wrap\";}}i:32;a:2:{i:0;a:1:{s:42:\".litespeed-align-right:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-align-right\";}}}i:1;a:1:{i:0;s:16:\"margin-left:auto\";}}i:33;a:2:{i:0;a:1:{s:20:\".litespeed-width-1-2\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-width-1-2\";}}}i:1;a:2:{i:0;s:9:\"width:45%\";i:1;s:12:\"padding:20px\";}}i:34;a:2:{i:0;a:1:{s:20:\".litespeed-width-1-3\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-width-1-3\";}}}i:1;a:2:{i:0;s:9:\"width:30%\";i:1;s:12:\"padding:25px\";}}i:35;a:2:{i:0;a:1:{s:21:\".litespeed-width-7-10\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-width-7-10\";}}}i:1;a:2:{i:0;s:9:\"width:65%\";i:1;s:12:\"padding:20px\";}}i:36;a:2:{i:0;a:1:{s:21:\".litespeed-width-3-10\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-width-3-10\";}}}i:1;a:2:{i:0;s:9:\"width:35%\";i:1;s:12:\"padding:20px\";}}i:37;s:37:\"@media screen and (max-width: 814px){\";i:38;a:2:{i:0;a:1:{s:21:\".litespeed-width-7-10\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-width-7-10\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:39;a:2:{i:0;a:1:{s:21:\".litespeed-width-3-10\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-width-3-10\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:9:\"padding:0\";}}i:40;s:1:\"}\";i:41;a:2:{i:0;a:1:{s:35:\".litespeed-hide:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-hide\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:42;a:2:{i:0;a:1:{s:36:\".litespeed-right:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-right\";}}}i:1;a:1:{i:0;s:11:\"float:right\";}}i:43;a:2:{i:0;a:1:{s:19:\".litespeed-relative\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-relative\";}}}i:1;a:1:{i:0;s:17:\"position:relative\";}}i:44;a:2:{i:0;a:1:{s:23:\".litespeed-align-center\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-align-center\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:45;a:2:{i:0;a:1:{s:37:\".litespeed-left10:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-left10\";}}}i:1;a:1:{i:0;s:16:\"margin-left:10px\";}}i:46;a:2:{i:0;a:1:{s:37:\".litespeed-left20:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-left20\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:47;a:2:{i:0;a:1:{s:38:\".litespeed-right10:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-right10\";}}}i:1;a:1:{i:0;s:17:\"margin-right:10px\";}}i:48;a:2:{i:0;a:1:{s:38:\".litespeed-right20:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-right20\";}}}i:1;a:1:{i:0;s:17:\"margin-right:20px\";}}i:49;a:2:{i:0;a:1:{s:38:\".litespeed-right30:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-right30\";}}}i:1;a:1:{i:0;s:17:\"margin-right:30px\";}}i:50;a:2:{i:0;a:1:{s:38:\".litespeed-right50:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-right50\";}}}i:1;a:1:{i:0;s:17:\"margin-right:50px\";}}i:51;a:2:{i:0;a:1:{s:36:\".litespeed-top10:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-top10\";}}}i:1;a:1:{i:0;s:15:\"margin-top:10px\";}}i:52;a:2:{i:0;a:1:{s:36:\".litespeed-top15:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-top15\";}}}i:1;a:1:{i:0;s:15:\"margin-top:15px\";}}i:53;a:2:{i:0;a:1:{s:36:\".litespeed-top20:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-top20\";}}}i:1;a:1:{i:0;s:15:\"margin-top:20px\";}}i:54;a:2:{i:0;a:1:{s:36:\".litespeed-top30:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-top30\";}}}i:1;a:1:{i:0;s:15:\"margin-top:30px\";}}i:55;a:2:{i:0;a:1:{s:40:\".litespeed-margin-y5:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-margin-y5\";}}}i:1;a:2:{i:0;s:14:\"margin-top:5px\";i:1;s:17:\"margin-bottom:5px\";}}i:56;a:2:{i:0;a:1:{s:40:\".litespeed-margin-x5:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-margin-x5\";}}}i:1;a:2:{i:0;s:15:\"margin-left:5px\";i:1;s:16:\"margin-right:5px\";}}i:57;a:2:{i:0;a:2:{s:33:\".litespeed-wrap .litespeed-left20\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:16:\"litespeed-left20\";}}s:17:\".litespeed-left20\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-left20\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:58;a:2:{i:0;a:1:{s:40:\".litespeed-wrap .litespeed-bg-quic-cloud\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:23:\"litespeed-bg-quic-cloud\";}}}i:1;a:1:{i:0;s:75:\"background:linear-gradient(rgba(230,242,242,1) 10%,rgba(250,255,255,1) 30%)\";}}i:59;a:2:{i:0;a:1:{s:17:\".litespeed-left50\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-left50\";}}}i:1;a:1:{i:0;s:16:\"margin-left:50px\";}}i:60;a:2:{i:0;a:1:{s:24:\".litespeed-padding-space\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-padding-space\";}}}i:1;a:1:{i:0;s:16:\"padding:5px 10px\";}}i:61;a:2:{i:0;a:1:{s:46:\".litespeed-margin-bottom10:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-margin-bottom10\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:10px\";}}i:62;a:2:{i:0;a:1:{s:46:\".litespeed-margin-bottom20:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-margin-bottom20\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:20px\";}}i:63;a:2:{i:0;a:1:{s:51:\".litespeed-margin-bottom-remove:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-margin-bottom-remove\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:0px\";}}i:64;a:2:{i:0;a:1:{s:48:\".litespeed-margin-top-remove:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-margin-top-remove\";}}}i:1;a:1:{i:0;s:14:\"margin-top:0px\";}}i:65;a:2:{i:0;a:1:{s:49:\".litespeed-margin-left-remove:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-margin-left-remove\";}}}i:1;a:1:{i:0;s:15:\"margin-left:0px\";}}i:66;a:2:{i:0;a:1:{s:46:\".litespeed-margin-y-remove:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-margin-y-remove\";}}}i:1;a:2:{i:0;s:14:\"margin-top:0px\";i:1;s:17:\"margin-bottom:0px\";}}i:67;a:2:{i:0;a:1:{s:29:\".litespeed-empty-space-xlarge\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-empty-space-xlarge\";}}}i:1;a:1:{i:0;s:14:\"margin-top:8em\";}}i:68;a:2:{i:0;a:1:{s:28:\".litespeed-empty-space-large\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-empty-space-large\";}}}i:1;a:1:{i:0;s:14:\"margin-top:6em\";}}i:69;a:2:{i:0;a:1:{s:29:\".litespeed-empty-space-medium\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-empty-space-medium\";}}}i:1;a:1:{i:0;s:14:\"margin-top:3em\";}}i:70;a:2:{i:0;a:1:{s:28:\".litespeed-empty-space-small\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-empty-space-small\";}}}i:1;a:1:{i:0;s:14:\"margin-top:2em\";}}i:71;a:2:{i:0;a:1:{s:27:\".litespeed-empty-space-tiny\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-empty-space-tiny\";}}}i:1;a:1:{i:0;s:14:\"margin-top:1em\";}}i:72;a:2:{i:0;a:1:{s:41:\".litespeed-text-jumbo:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-text-jumbo\";}}}i:1;a:1:{i:0;s:13:\"font-size:3em\";}}i:73;a:2:{i:0;a:1:{s:41:\".litespeed-text-large:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-text-large\";}}}i:1;a:1:{i:0;s:15:\"font-size:.75em\";}}i:74;a:2:{i:0;a:1:{s:18:\".litespeed-text-md\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-text-md\";}}}i:1;a:1:{i:0;s:15:\"font-size:1.2em\";}}i:75;a:2:{i:0;a:1:{s:21:\".litespeed-text-right\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-text-right\";}}}i:1;a:1:{i:0;s:16:\"text-align:right\";}}i:76;a:2:{i:0;a:1:{s:22:\".litespeed-text-center\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-text-center\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:77;a:2:{i:0;a:2:{s:20:\".litespeed-text-bold\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-text-bold\";}}s:15:\".litespeed-bold\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-bold\";}}}i:1;a:1:{i:0;s:15:\"font-weight:600\";}}i:78;a:2:{i:0;a:1:{s:38:\".litespeed-default:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-default\";}}}i:1;a:1:{i:0;s:13:\"color:#a7a7a7\";}}i:79;a:2:{i:0;a:1:{s:38:\".litespeed-primary:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-primary\";}}}i:1;a:1:{i:0;s:10:\"color:#36c\";}}i:80;a:2:{i:0;a:1:{s:35:\".litespeed-info:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-info\";}}}i:1;a:1:{i:0;s:13:\"color:#3fbfbf\";}}i:81;a:2:{i:0;a:1:{s:38:\".litespeed-success:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-success\";}}}i:1;a:1:{i:0;s:13:\"color:#73b38d\";}}i:82;a:2:{i:0;a:1:{s:38:\".litespeed-warning:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-warning\";}}}i:1;a:1:{i:0;s:13:\"color:#ff8c00\";}}i:83;a:2:{i:0;a:1:{s:37:\".litespeed-danger:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-danger\";}}}i:1;a:1:{i:0;s:13:\"color:#dc3545\";}}i:84;a:2:{i:0;a:2:{s:46:\"a.litespeed-danger:hover:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-danger\";}i:0;a:1:{i:0;s:1:\"a\";}}s:51:\"button.litespeed-danger:hover:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-danger\";}i:0;a:1:{i:0;s:6:\"button\";}}}i:1;a:1:{i:0;s:10:\"color:#a00\";}}i:85;a:2:{i:0;a:1:{s:23:\".litespeed-text-success\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-text-success\";}}}i:1;a:1:{i:0;s:13:\"color:#34b15d\";}}i:86;a:2:{i:0;a:1:{s:42:\".litespeed-form-action:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-form-action\";}}}i:1;a:1:{i:0;s:13:\"color:#1a9292\";}}i:87;a:2:{i:0;a:2:{s:51:\"a.litespeed-form-action:hover:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-form-action\";}i:0;a:1:{i:0;s:1:\"a\";}}s:56:\"button.litespeed-form-action:hover:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-form-action\";}i:0;a:1:{i:0;s:6:\"button\";}}}i:1;a:1:{i:0;s:13:\"color:#36b0af\";}}i:88;a:2:{i:0;a:1:{s:41:\".litespeed-bg-default:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-bg-default\";}}}i:1;a:1:{i:0;s:24:\"background-color:#a7a7a7\";}}i:89;a:2:{i:0;a:1:{s:41:\".litespeed-bg-primary:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-bg-primary\";}}}i:1;a:1:{i:0;s:21:\"background-color:#36c\";}}i:90;a:2:{i:0;a:1:{s:38:\".litespeed-bg-info:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-bg-info\";}}}i:1;a:1:{i:0;s:24:\"background-color:#d1ecf1\";}}i:91;a:2:{i:0;a:1:{s:41:\".litespeed-bg-success:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-bg-success\";}}}i:1;a:1:{i:0;s:24:\"background-color:#73b38d\";}}i:92;a:2:{i:0;a:1:{s:41:\".litespeed-bg-warning:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-bg-warning\";}}}i:1;a:1:{i:0;s:24:\"background-color:#ff8c00\";}}i:93;a:2:{i:0;a:1:{s:40:\".litespeed-bg-danger:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-bg-danger\";}}}i:1;a:1:{i:0;s:24:\"background-color:#dc3545\";}}i:94;a:2:{i:0;a:1:{s:26:\".litespeed-bg-text-success\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-bg-text-success\";}}}i:1;a:1:{i:0;s:24:\"background-color:#34b15d\";}}i:95;a:2:{i:0;a:1:{s:15:\".litespeed-wrap\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:22:\"margin:10px 20px 0 2px\";}}i:96;s:37:\"@media screen and (max-width: 600px){\";i:97;a:2:{i:0;a:1:{s:27:\".litespeed-wrap h2 .nav-tab\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:7:\"nav-tab\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:2:{i:0;s:31:\"border-bottom:1px solid #c3c4c7\";i:1;s:20:\"margin:10px 10px 0 0\";}}i:98;a:2:{i:0;a:1:{s:32:\".litespeed-wrap .nav-tab-wrapper\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:15:\"nav-tab-wrapper\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:15px\";}}i:99;a:2:{i:0;a:2:{s:17:\".litespeed-desc a\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-desc\";}i:0;a:1:{i:0;s:1:\"a\";}}s:34:\".litespeed-body p > a:not(.button)\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:21:\"word-break:break-word\";}}i:100;s:1:\"}\";i:101;a:2:{i:0;a:1:{s:24:\".litespeed-wrap .nav-tab\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:7:\"nav-tab\";}}}i:1;a:4:{i:0;s:27:\"border-bottom-color:inherit\";i:1;s:25:\"border-bottom-style:solid\";i:2;s:23:\"border-bottom-width:1px\";i:3;s:23:\"margin:11px 10px -1px 0\";}}i:102;a:2:{i:0;a:1:{s:31:\".litespeed-wrap .nav-tab-active\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"nav-tab-active\";}}}i:1;a:2:{i:0;s:15:\"background:#fff\";i:1;s:24:\"border-bottom-color:#fff\";}}i:103;a:2:{i:0;a:2:{s:51:\".litespeed-wrap .nav-tab:focus:not(.nav-tab-active)\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:7:\"nav-tab\";}}s:51:\".litespeed-wrap .nav-tab:hover:not(.nav-tab-active)\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:7:\"nav-tab\";}}}i:1;a:2:{i:0;s:24:\"background-color:#f1f1f1\";i:1;s:10:\"color:#444\";}}i:104;a:2:{i:0;a:1:{s:15:\".litespeed-body\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}}}i:1;a:4:{i:0;s:15:\"background:#fff\";i:1;s:24:\"border:1px solid #e5e5e5\";i:2;s:36:\"box-shadow:0 1px 1px rgba(0,0,0,.04)\";i:3;s:26:\"padding:1px 20px 20px 20px\";}}i:105;s:37:\"@media screen and (min-width: 681px){\";i:106;a:2:{i:0;a:1:{s:35:\".litespeed-header + .litespeed-body\";a:1:{i:1;a:2:{i:0;s:16:\"litespeed-header\";i:1;s:14:\"litespeed-body\";}}}i:1;a:1:{i:0;s:15:\"border-top:none\";}}i:107;s:1:\"}\";i:108;a:2:{i:0;a:1:{s:21:\".litespeed-body table\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:2:{i:0;s:24:\"border-collapse:collapse\";i:1;s:10:\"width:100%\";}}i:109;a:2:{i:0;a:1:{s:37:\".litespeed-body .litespeed-width-auto\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:20:\"litespeed-width-auto\";}}}i:1;a:1:{i:0;s:10:\"width:auto\";}}i:110;a:2:{i:0;a:1:{s:22:\".litespeed-description\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-description\";}}}i:1;a:4:{i:0;s:10:\"color:#666\";i:1;s:14:\"font-size:13px\";i:2;s:15:\"margin:1.5rem 0\";i:3;s:15:\"max-width:960px\";}}i:111;a:2:{i:0;a:1:{s:23:\".litespeed-desc-wrapper\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-desc-wrapper\";}}}i:1;a:2:{i:0;s:20:\"display:inline-block\";i:1;s:16:\"margin-left:10px\";}}i:112;a:2:{i:0;a:1:{s:15:\".litespeed-desc\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-desc\";}}}i:1;a:5:{i:0;s:14:\"font-size:12px\";i:1;s:18:\"font-weight:normal\";i:2;s:13:\"color:#7a919e\";i:3;s:13:\"margin:10px 0\";i:4;s:15:\"line-height:1.7\";}}i:113;a:2:{i:0;a:1:{s:33:\".litespeed-desc + .litespeed-desc\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-desc\";i:1;s:14:\"litespeed-desc\";}}}i:1;a:1:{i:0;s:15:\"margin-top:-5px\";}}i:114;a:2:{i:0;a:1:{s:32:\"td > .litespeed-desc:first-child\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-desc\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:2:{i:0;s:14:\"margin-top:0px\";i:1;s:16:\"line-height:2.24\";}}i:115;a:2:{i:0;a:1:{s:13:\".litespeed-h3\";a:1:{i:1;a:1:{i:0;s:12:\"litespeed-h3\";}}}i:1;a:5:{i:0;s:16:\"line-height:18px\";i:1;s:13:\"color:#264d73\";i:2;s:14:\"font-size:18px\";i:3;s:15:\"font-weight:600\";i:4;s:12:\"margin:2px 0\";}}i:116;a:2:{i:0;a:1:{s:22:\".litespeed-div .submit\";a:1:{i:1;a:2:{i:0;s:13:\"litespeed-div\";i:1;s:6:\"submit\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:117;s:37:\"@media screen and (min-width: 681px){\";i:118;a:2:{i:0;a:1:{s:14:\".litespeed-div\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-div\";}}}i:1;a:2:{i:0;s:20:\"display:inline-block\";i:1;s:15:\"min-width:100px\";}}i:119;a:2:{i:0;a:1:{s:22:\".litespeed-div .submit\";a:1:{i:1;a:2:{i:0;s:13:\"litespeed-div\";i:1;s:6:\"submit\";}}}i:1;a:2:{i:0;s:10:\"margin:5px\";i:1;s:11:\"padding:5px\";}}i:120;s:1:\"}\";i:121;s:37:\"@media screen and (max-width: 680px){\";i:122;a:2:{i:0;a:1:{s:70:\".litespeed-desc + .litespeed-desc.litespeed-left20:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-desc\";i:1;s:14:\"litespeed-desc\";i:2;s:16:\"litespeed-left20\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:123;a:2:{i:0;a:1:{s:56:\".litespeed-desc .litespeed-callout.notice-warning.inline\";a:1:{i:1;a:4:{i:0;s:14:\"litespeed-desc\";i:1;s:17:\"litespeed-callout\";i:2;s:14:\"notice-warning\";i:3;s:6:\"inline\";}}}i:1;a:1:{i:0;s:21:\"word-break:break-word\";}}i:124;s:1:\"}\";i:125;a:2:{i:0;a:1:{s:13:\".litespeed-h1\";a:1:{i:1;a:1:{i:0;s:12:\"litespeed-h1\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:126;a:2:{i:0;a:1:{s:24:\"h3 .litespeed-learn-more\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-learn-more\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:4:{i:0;s:14:\"font-size:12px\";i:1;s:18:\"font-weight:normal\";i:2;s:13:\"color:#7a919e\";i:3;s:16:\"margin-left:30px\";}}i:127;a:2:{i:0;a:1:{s:20:\".litespeed-wrap code\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:4:\"code\";}}}i:1;a:5:{i:0;s:10:\"color:#666\";i:1;s:24:\"background-color:#dde9f5\";i:2;s:17:\"border-radius:3px\";i:3;s:14:\"font-size:11px\";i:4;s:17:\"font-style:normal\";}}i:128;a:2:{i:0;a:1:{s:18:\".litespeed-wrap ul\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:15:\"margin-left:2em\";}}i:129;a:2:{i:0;a:1:{s:17:\".litespeed-wrap i\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:1:\"i\";}}}i:1;a:2:{i:0;s:14:\"font-size:13px\";i:1;s:16:\"line-height:16px\";}}i:130;a:2:{i:0;a:1:{s:33:\".litespeed-wrap .litespeed-desc i\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"litespeed-desc\";}i:0;a:1:{i:0;s:1:\"i\";}}}i:1;a:1:{i:0;s:14:\"font-size:12px\";}}i:131;a:2:{i:0;a:1:{s:17:\".litespeed-wrap p\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:12:\"margin:1em 0\";}}i:132;a:2:{i:0;a:1:{s:24:\".litespeed-wrap p.submit\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"submit\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:133;a:2:{i:0;a:1:{s:17:\".litespeed-desc p\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-desc\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:134;a:2:{i:0;a:2:{s:16:\".litespeed-title\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-title\";}}s:22:\".litespeed-title-short\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-title-short\";}}}i:1;a:7:{i:0;s:14:\"font-size:18px\";i:1;s:28:\"border-bottom:1px solid #ccc\";i:2;s:24:\"margin:2.5em 0px 1.5em 0\";i:3;s:13:\"display:table\";i:4;s:18:\"padding-right:50px\";i:5;s:16:\"padding-left:3px\";i:6;s:18:\"padding-bottom:3px\";}}i:135;a:2:{i:0;a:1:{s:24:\".litespeed-title .button\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-title\";i:1;s:6:\"button\";}}}i:1;a:3:{i:0;s:16:\"margin-left:1rem\";i:1;s:17:\"margin-bottom:5px\";i:2;s:21:\"vertical-align:middle\";}}i:136;a:2:{i:0;a:1:{s:37:\".litespeed-title .litespeed-quic-icon\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-title\";i:1;s:19:\"litespeed-quic-icon\";}}}i:1;a:1:{i:0;s:16:\"margin-right:6px\";}}i:137;a:2:{i:0;a:2:{s:18:\".litespeed-title a\";a:2:{i:1;a:1:{i:0;s:15:\"litespeed-title\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".litespeed-title-short a\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-title-short\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:138;a:2:{i:0;a:1:{s:22:\".litespeed-title-short\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-title-short\";}}}i:1;a:1:{i:0;s:18:\"padding-right:20px\";}}i:139;a:2:{i:0;a:1:{s:24:\".litespeed-title-section\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-title-section\";}}}i:1;a:6:{i:0;s:27:\"margin:2em -20px 12px -20px\";i:1;s:27:\"padding:12px 20px 12px 20px\";i:2;s:28:\"border-bottom:1px solid #eee\";i:3;s:15:\"font-size:1.2em\";i:4;s:13:\"display:block\";i:5;s:28:\"border-top:1px solid #f1f1f1\";}}i:140;a:2:{i:0;a:1:{s:35:\".litespeed-postbox .litespeed-title\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:15:\"litespeed-title\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";}}i:141;a:2:{i:0;a:1:{s:27:\".litespeed-title-right-icon\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-title-right-icon\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:18:\"font-weight:normal\";}}i:142;a:2:{i:0;a:1:{s:25:\".litespeed-list li:before\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-list\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:11:\"content:\">\"\";i:1;s:13:\"color:#cc3d6a\";}}i:143;a:2:{i:0;a:1:{s:26:\".litespeed-wrap a.disabled\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:8:\"disabled\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:4:{i:0;s:18:\"cursor:not-allowed\";i:1;s:10:\"opacity:.5\";i:2;s:20:\"text-decoration:none\";i:3;s:13:\"color:#72777c\";}}i:144;a:2:{i:0;a:1:{s:16:\".litespeed-table\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-table\";}}}i:1;a:1:{i:0;s:14:\"font-size:14px\";}}i:145;a:2:{i:0;a:1:{s:31:\".litespeed-body tbody > tr > th\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:3:{i:0;s:5:\"tbody\";i:1;s:2:\"tr\";i:2;s:2:\"th\";}}}i:1;a:1:{i:0;s:17:\"padding-left:20px\";}}i:146;a:2:{i:0;a:1:{s:24:\".litespeed-body tbody th\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:2:{i:0;s:5:\"tbody\";i:1;s:2:\"th\";}}}i:1;a:5:{i:0;s:18:\"vertical-align:top\";i:1;s:15:\"text-align:left\";i:2;s:24:\"padding:18px 10px 20px 0\";i:3;s:11:\"width:200px\";i:4;s:15:\"font-weight:600\";}}i:147;a:2:{i:0;a:1:{s:18:\".litespeed-body td\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:3:{i:0;s:17:\"padding:15px 10px\";i:1;s:15:\"line-height:1.3\";i:2;s:21:\"vertical-align:middle\";}}i:148;a:2:{i:0;a:1:{s:37:\".litespeed-body .widefat td input + p\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:7:\"widefat\";}i:0;a:3:{i:0;s:2:\"td\";i:1;s:5:\"input\";i:2;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-top:.8em\";}}i:149;a:2:{i:0;a:1:{s:59:\".litespeed-body .striped > tbody > :nth-child(even) .notice\";a:2:{i:1;a:3:{i:0;s:14:\"litespeed-body\";i:1;s:7:\"striped\";i:2;s:6:\"notice\";}i:0;a:1:{i:0;s:5:\"tbody\";}}}i:1;a:5:{i:0;s:24:\"background-color:#f9f9f9\";i:1;s:38:\"box-shadow:0 1px 1px 0 rgba(0,0,0,.05)\";i:2;s:28:\"border-top:1px solid #e5e5e5\";i:3;s:31:\"border-bottom:1px solid #e5e5e5\";i:4;s:30:\"border-right:1px solid #e5e5e5\";}}i:150;a:2:{i:0;a:1:{s:71:\".litespeed-body .striped > tbody > :nth-child(even) .notice:first-child\";a:2:{i:1;a:3:{i:0;s:14:\"litespeed-body\";i:1;s:7:\"striped\";i:2;s:6:\"notice\";}i:0;a:1:{i:0;s:5:\"tbody\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:151;a:2:{i:0;a:1:{s:37:\".litespeed-body .litespeed-vary-table\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:20:\"litespeed-vary-table\";}}}i:1;a:3:{i:0;s:15:\"margin-top:-5px\";i:1;s:11:\"width:250px\";i:2;s:18:\"margin-bottom:20px\";}}i:152;a:2:{i:0;a:1:{s:40:\".litespeed-body .litespeed-vary-table td\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:20:\"litespeed-vary-table\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:2:{i:0;s:9:\"width:50%\";i:1;s:15:\"padding:5px 0px\";}}i:153;a:2:{i:0;a:2:{s:27:\".litespeed-table-compact td\";a:2:{i:1;a:1:{i:0;s:23:\"litespeed-table-compact\";}i:0;a:1:{i:0;s:2:\"td\";}}s:27:\".litespeed-table-compact th\";a:2:{i:1;a:1:{i:0;s:23:\"litespeed-table-compact\";}i:0;a:1:{i:0;s:2:\"th\";}}}i:1;a:1:{i:0;s:20:\"padding:.5rem .75rem\";}}i:154;a:2:{i:0;a:2:{s:16:\".litespeed-block\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-block\";}}s:21:\".litespeed-block-tiny\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-block-tiny\";}}}i:1;a:6:{i:0;s:22:\"border:1px dotted #ccc\";i:1;s:17:\"border-radius:5px\";i:2;s:12:\"display:flex\";i:3;s:14:\"flex-wrap:wrap\";i:4;s:22:\"padding:.75rem 1.25rem\";i:5;s:17:\"margin-bottom:5px\";}}i:155;a:2:{i:0;a:1:{s:21:\".litespeed-block-tiny\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-block-tiny\";}}}i:1;a:1:{i:0;s:15:\"max-width:670px\";}}i:156;a:2:{i:0;a:1:{s:14:\".litespeed-col\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-col\";}}}i:1;a:2:{i:0;s:12:\"flex:0 0 30%\";i:1;s:18:\"padding-right:2rem\";}}i:157;a:2:{i:0;a:2:{s:25:\".litespeed-col:last-child\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-col\";}}s:30:\".litespeed-col-auto:last-child\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-col-auto\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:158;a:2:{i:0;a:1:{s:19:\".litespeed-col-auto\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-col-auto\";}}}i:1;a:1:{i:0;s:18:\"padding-right:2rem\";}}i:159;a:2:{i:0;a:1:{s:17:\".litespeed-col-br\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-col-br\";}}}i:1;a:2:{i:0;s:13:\"flex:0 0 100%\";i:1;s:26:\"border-top:1px dotted #ccc\";}}i:160;a:2:{i:0;a:1:{s:18:\".litespeed-col-inc\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-col-inc\";}}}i:1;a:4:{i:0;s:20:\"display:inline-block\";i:1;s:15:\"margin-top:16px\";i:2;s:15:\"min-width:150px\";i:3;s:16:\"font-weight:bold\";}}i:161;a:2:{i:0;a:2:{s:31:\".litespeed-block h4:first-child\";a:2:{i:1;a:1:{i:0;s:15:\"litespeed-block\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:85:\".litespeed-block .litespeed-form-label:not(.litespeed-form-label--toggle):first-child\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-block\";i:1;s:20:\"litespeed-form-label\";}}}i:1;a:1:{i:0;s:16:\"margin-top:.5rem\";}}i:162;a:2:{i:0;a:1:{s:46:\".litespeed-block .litespeed-callout:last-child\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-block\";i:1;s:17:\"litespeed-callout\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:163;s:37:\"@media screen and (max-width: 600px){\";i:164;a:2:{i:0;a:1:{s:16:\".litespeed-block\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-block\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:165;a:2:{i:0;a:1:{s:31:\".litespeed-block .litespeed-col\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-block\";i:1;s:13:\"litespeed-col\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:166;s:1:\"}\";i:167;a:2:{i:0;a:2:{s:24:\".litespeed-cards-wrapper\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-cards-wrapper\";}}s:24:\".litespeed-panel-wrapper\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-panel-wrapper\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:10:\"width:100%\";i:2;s:18:\"flex-flow:row wrap\";i:3;s:26:\"justify-content:flex-start\";}}i:168;a:2:{i:0;a:1:{s:24:\".litespeed-cards-wrapper\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-cards-wrapper\";}}}i:1;a:1:{i:0;s:30:\"margin:-10px -15px -10px -15px\";}}i:169;a:2:{i:0;a:1:{s:16:\".litespeed-panel\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-panel\";}}}i:1;a:10:{i:0;s:20:\"text-decoration:none\";i:1;s:12:\"display:flex\";i:2;s:29:\"justify-content:space-between\";i:3;s:23:\"padding:6px 8px 4px 5px\";i:4;s:11:\"width:322px\";i:5;s:25:\"margin:15px 5px 15px 15px\";i:6;s:15:\"min-height:75px\";i:7;s:21:\"box-sizing:border-box\";i:8;s:18:\"background:#f9fafc\";i:9;s:15:\"transition:.25s\";}}i:170;a:2:{i:0;a:1:{s:22:\".litespeed-panel:hover\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-panel\";}}}i:1;a:2:{i:0;s:21:\"border:1px solid #69c\";i:1;s:15:\"box-shadow:none\";}}i:171;a:2:{i:0;a:1:{s:29:\".litespeed-panel-wrapper-icon\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-panel-wrapper-icon\";}}}i:1;a:2:{i:0;s:9:\"width:25%\";i:1;s:11:\"height:100%\";}}i:172;a:2:{i:0;a:1:{s:32:\"[class*=\'litespeed-panel-icon-\']\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:6:{i:0;s:23:\"background-size:contain\";i:1;s:10:\"width:60px\";i:2;s:11:\"height:60px\";i:3;s:10:\"margin:5px\";i:4;s:27:\"background-repeat:no-repeat\";i:5;s:20:\"display:inline-block\";}}i:173;a:2:{i:0;a:1:{s:25:\".litespeed-panel-icon-all\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-panel-icon-all\";}}}i:1;a:1:{i:0;s:107:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/all.svg\")\";}}i:174;a:2:{i:0;a:1:{s:30:\".litespeed-panel-icon-revision\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-panel-icon-revision\";}}}i:1;a:1:{i:0;s:112:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/revision.svg\")\";}}i:175;a:2:{i:0;a:1:{s:40:\".litespeed-panel-icon-orphaned_post_meta\";a:1:{i:1;a:1:{i:0;s:39:\"litespeed-panel-icon-orphaned_post_meta\";}}}i:1;a:1:{i:0;s:112:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/revision.svg\")\";}}i:176;a:2:{i:0;a:1:{s:32:\".litespeed-panel-icon-auto_draft\";a:1:{i:1;a:1:{i:0;s:31:\"litespeed-panel-icon-auto_draft\";}}}i:1;a:1:{i:0;s:114:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/auto_draft.svg\")\";}}i:177;a:2:{i:0;a:1:{s:32:\".litespeed-panel-icon-trash_post\";a:1:{i:1;a:1:{i:0;s:31:\"litespeed-panel-icon-trash_post\";}}}i:1;a:1:{i:0;s:114:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/trash_post.svg\")\";}}i:178;a:2:{i:0;a:1:{s:34:\".litespeed-panel-icon-spam_comment\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-panel-icon-spam_comment\";}}}i:1;a:1:{i:0;s:116:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/spam_comment.svg\")\";}}i:179;a:2:{i:0;a:1:{s:35:\".litespeed-panel-icon-trash_comment\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-panel-icon-trash_comment\";}}}i:1;a:1:{i:0;s:117:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/trash_comment.svg\")\";}}i:180;a:2:{i:0;a:1:{s:40:\".litespeed-panel-icon-trackback-pingback\";a:1:{i:1;a:1:{i:0;s:39:\"litespeed-panel-icon-trackback-pingback\";}}}i:1;a:1:{i:0;s:122:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/trackback-pingback.svg\")\";}}i:181;a:2:{i:0;a:1:{s:39:\".litespeed-panel-icon-expired_transient\";a:1:{i:1;a:1:{i:0;s:38:\"litespeed-panel-icon-expired_transient\";}}}i:1;a:1:{i:0;s:121:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/expired_transient.svg\")\";}}i:182;a:2:{i:0;a:1:{s:36:\".litespeed-panel-icon-all_transients\";a:1:{i:1;a:1:{i:0;s:35:\"litespeed-panel-icon-all_transients\";}}}i:1;a:1:{i:0;s:118:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/all_transients.svg\")\";}}i:183;a:2:{i:0;a:1:{s:37:\".litespeed-panel-icon-optimize_tables\";a:1:{i:1;a:1:{i:0;s:36:\"litespeed-panel-icon-optimize_tables\";}}}i:1;a:1:{i:0;s:119:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/optimize_tables.svg\")\";}}i:184;a:2:{i:0;a:1:{s:33:\".litespeed-panel-icon-purge-front\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-panel-icon-purge-front\";}}}i:1;a:1:{i:0;s:115:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-front.svg\")\";}}i:185;a:2:{i:0;a:1:{s:33:\".litespeed-panel-icon-purge-pages\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-panel-icon-purge-pages\";}}}i:1;a:1:{i:0;s:115:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-pages.svg\")\";}}i:186;a:2:{i:0;a:1:{s:33:\".litespeed-panel-icon-purge-cssjs\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-panel-icon-purge-cssjs\";}}}i:1;a:1:{i:0;s:115:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-cssjs.svg\")\";}}i:187;a:2:{i:0;a:1:{s:34:\".litespeed-panel-icon-purge-object\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-panel-icon-purge-object\";}}}i:1;a:1:{i:0;s:116:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-object.svg\")\";}}i:188;a:2:{i:0;a:1:{s:35:\".litespeed-panel-icon-purge-opcache\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-panel-icon-purge-opcache\";}}}i:1;a:1:{i:0;s:117:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-opcache.svg\")\";}}i:189;a:2:{i:0;a:1:{s:31:\".litespeed-panel-icon-purge-all\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-panel-icon-purge-all\";}}}i:1;a:1:{i:0;s:113:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-all.svg\")\";}}i:190;a:2:{i:0;a:1:{s:33:\".litespeed-panel-icon-empty-cache\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-panel-icon-empty-cache\";}}}i:1;a:1:{i:0;s:115:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/empty-cache.svg\")\";}}i:191;a:2:{i:0;a:1:{s:31:\".litespeed-panel-icon-purge-403\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-panel-icon-purge-403\";}}}i:1;a:1:{i:0;s:113:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-403.svg\")\";}}i:192;a:2:{i:0;a:1:{s:31:\".litespeed-panel-icon-purge-404\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-panel-icon-purge-404\";}}}i:1;a:1:{i:0;s:113:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-404.svg\")\";}}i:193;a:2:{i:0;a:1:{s:31:\".litespeed-panel-icon-purge-500\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-panel-icon-purge-500\";}}}i:1;a:1:{i:0;s:113:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/purge-500.svg\")\";}}i:194;a:2:{i:0;a:1:{s:37:\".litespeed-panel-top-right-icon-cross\";a:1:{i:1;a:1:{i:0;s:36:\"litespeed-panel-top-right-icon-cross\";}}}i:1;a:1:{i:0;s:114:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/cross_icon.svg\")\";}}i:195;a:2:{i:0;a:1:{s:36:\".litespeed-panel-top-right-icon-tick\";a:1:{i:1;a:1:{i:0;s:35:\"litespeed-panel-top-right-icon-tick\";}}}i:1;a:1:{i:0;s:116:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/success_icon.svg\")\";}}i:196;a:2:{i:0;a:1:{s:24:\".litespeed-panel-content\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-panel-content\";}}}i:1;a:3:{i:0;s:9:\"width:75%\";i:1;s:11:\"height:100%\";i:2;s:14:\"margin-top:7px\";}}i:197;a:2:{i:0;a:1:{s:21:\".litespeed-panel-para\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-panel-para\";}}}i:1;a:3:{i:0;s:13:\"color:#264d73\";i:1;s:14:\"font-size:12px\";i:2;s:16:\"line-height:1.45\";}}i:198;a:2:{i:0;a:1:{s:30:\".litespeed-panel .litespeed-h3\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-panel\";i:1;s:12:\"litespeed-h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:14px\";}}i:199;a:2:{i:0;a:1:{s:24:\".litespeed-panel-counter\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-panel-counter\";}}}i:1;a:1:{i:0;s:13:\"color:#3abfbf\";}}i:200;a:2:{i:0;a:1:{s:28:\".litespeed-panel-counter-red\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-panel-counter-red\";}}}i:1;a:1:{i:0;s:13:\"color:#cc3d6a\";}}i:201;a:2:{i:0;a:1:{s:34:\".litespeed-panel-wrapper-top-right\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-panel-wrapper-top-right\";}}}i:1;a:3:{i:0;s:9:\"width:10%\";i:1;s:11:\"height:100%\";i:2;s:16:\"text-align:right\";}}i:202;a:2:{i:0;a:2:{s:36:\".litespeed-panel-top-right-icon-tick\";a:1:{i:1;a:1:{i:0;s:35:\"litespeed-panel-top-right-icon-tick\";}}s:37:\".litespeed-panel-top-right-icon-cross\";a:1:{i:1;a:1:{i:0;s:36:\"litespeed-panel-top-right-icon-cross\";}}}i:1;a:5:{i:0;s:23:\"background-size:contain\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";i:3;s:27:\"background-repeat:no-repeat\";i:4;s:20:\"display:inline-block\";}}i:203;a:2:{i:0;a:1:{s:28:\".litespeed-wrap .button-link\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:11:\"button-link\";}}}i:1;a:4:{i:0;s:11:\"height:auto\";i:1;s:19:\"line-height:inherit\";i:2;s:17:\"font-size:inherit\";i:3;s:15:\"box-shadow:none\";}}i:204;a:2:{i:0;a:2:{s:34:\".litespeed-wrap .button-link:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:11:\"button-link\";}}s:34:\".litespeed-wrap .button-link:focus\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:11:\"button-link\";}}}i:1;a:2:{i:0;s:15:\"box-shadow:none\";i:1;s:15:\"background:none\";}}i:205;a:2:{i:0;a:3:{s:35:\".litespeed .litespeed-btn-danger-bg\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:23:\"litespeed-btn-danger-bg\";}}s:40:\".litespeed-wrap .litespeed-btn-danger-bg\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:23:\"litespeed-btn-danger-bg\";}}s:24:\".litespeed-btn-danger-bg\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-btn-danger-bg\";}}}i:1;a:4:{i:0;s:18:\"background:#dc3545\";i:1;s:10:\"color:#fff\";i:2;s:24:\"border:1px solid #cc3d6a\";i:3;s:37:\"box-shadow:0 1px 0 rgba(177,93,93,.5)\";}}i:206;a:2:{i:0;a:3:{s:32:\".litespeed .litespeed-btn-danger\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:20:\"litespeed-btn-danger\";}}s:37:\".litespeed-wrap .litespeed-btn-danger\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:20:\"litespeed-btn-danger\";}}s:21:\".litespeed-btn-danger\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-btn-danger\";}}}i:1;a:4:{i:0;s:15:\"background:#fff\";i:1;s:13:\"color:#cc3d6a\";i:2;s:24:\"border:1px solid #cc3d6a\";i:3;s:37:\"box-shadow:0 1px 0 rgba(177,93,93,.5)\";}}i:207;a:2:{i:0;a:3:{s:38:\".litespeed .litespeed-btn-danger:hover\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:20:\"litespeed-btn-danger\";}}s:43:\".litespeed-wrap .litespeed-btn-danger:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:20:\"litespeed-btn-danger\";}}s:27:\".litespeed-btn-danger:hover\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-btn-danger\";}}}i:1;a:3:{i:0;s:20:\"border-color:#ab244e\";i:1;s:18:\"background:#cc3d6a\";i:2;s:10:\"color:#fff\";}}i:208;a:2:{i:0;a:3:{s:33:\".litespeed .litespeed-btn-warning\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-warning\";}}s:38:\".litespeed-wrap .litespeed-btn-warning\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-warning\";}}s:22:\".litespeed-btn-warning\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-warning\";}}}i:1;a:4:{i:0;s:15:\"background:#fff\";i:1;s:13:\"color:#e59544\";i:2;s:24:\"border:1px solid #e59544\";i:3;s:39:\"box-shadow:0 1px 0 rgba(249,166,82,.55)\";}}i:209;a:2:{i:0;a:3:{s:39:\".litespeed .litespeed-btn-warning:hover\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-warning\";}}s:44:\".litespeed-wrap .litespeed-btn-warning:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-warning\";}}s:28:\".litespeed-btn-warning:hover\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-warning\";}}}i:1;a:3:{i:0;s:20:\"border-color:#e59544\";i:1;s:18:\"background:#e59544\";i:2;s:10:\"color:#fff\";}}i:210;a:2:{i:0;a:3:{s:33:\".litespeed .litespeed-btn-success\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-success\";}}s:38:\".litespeed-wrap .litespeed-btn-success\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-success\";}}s:22:\".litespeed-btn-success\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-success\";}}}i:1;a:4:{i:0;s:15:\"background:#fff\";i:1;s:13:\"color:#36b0b0\";i:2;s:24:\"border:1px solid #36b0b0\";i:3;s:39:\"box-shadow:0 1px 0 rgba(73,160,160,.55)\";}}i:211;a:2:{i:0;a:3:{s:39:\".litespeed .litespeed-btn-success:hover\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-success\";}}s:44:\".litespeed-wrap .litespeed-btn-success:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-success\";}}s:28:\".litespeed-btn-success:hover\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-success\";}}}i:1;a:3:{i:0;s:20:\"border-color:#36b0b0\";i:1;s:18:\"background:#36b0b0\";i:2;s:10:\"color:#fff\";}}i:212;a:2:{i:0;a:1:{s:31:\".litespeed-wrap .button-primary\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"button-primary\";}}}i:1;a:5:{i:0;s:18:\"background:#528ac6\";i:1;s:36:\"border-color:#538ac6 #2264ad #2264ad\";i:2;s:10:\"color:#fff\";i:3;s:26:\"box-shadow:0 1px 0 #2264ad\";i:4;s:85:\"text-shadow:0 -1px 1px #2264ad,1px 0 1px #2264ad,0 1px 1px #2264ad,-1px 0 1px #2264ad\";}}i:213;a:2:{i:0;a:2:{s:37:\".litespeed-wrap .button-primary:focus\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"button-primary\";}}s:37:\".litespeed-wrap .button-primary:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"button-primary\";}}}i:1;a:3:{i:0;s:18:\"background:#5891ce\";i:1;s:20:\"border-color:#2264ad\";i:2;s:10:\"color:#fff\";}}i:214;a:2:{i:0;a:1:{s:37:\".litespeed-wrap .button-primary:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"button-primary\";}}}i:1;a:1:{i:0;s:26:\"box-shadow:0 1px 0 #2264ad\";}}i:215;a:2:{i:0;a:1:{s:37:\".litespeed-wrap .button-primary:focus\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"button-primary\";}}}i:1;a:4:{i:0;s:18:\"background:#5891ce\";i:1;s:20:\"border-color:#2264ad\";i:2;s:10:\"color:#fff\";i:3;s:46:\"box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db\";}}i:216;a:2:{i:0;a:3:{s:33:\".litespeed .litespeed-btn-primary\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-primary\";}}s:38:\".litespeed-wrap .litespeed-btn-primary\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-primary\";}}s:22:\".litespeed-btn-primary\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-primary\";}}}i:1;a:5:{i:0;s:13:\"color:#538ac6\";i:1;s:24:\"border:1px solid #538ac6\";i:2;s:46:\"-moz-box-shadow:0 0 0 1px rgba(83,138,198,.25)\";i:3;s:49:\"-webkit-box-shadow:0 0 0 1px rgba(83,138,198,.25)\";i:4;s:41:\"box-shadow:0 0 0 1px rgba(83,138,198,.25)\";}}i:217;a:2:{i:0;a:3:{s:39:\".litespeed .litespeed-btn-primary:hover\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-btn-primary\";}}s:44:\".litespeed-wrap .litespeed-btn-primary:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:21:\"litespeed-btn-primary\";}}s:28:\".litespeed-btn-primary:hover\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-btn-primary\";}}}i:1;a:3:{i:0;s:18:\"background:#538ac6\";i:1;s:20:\"border-color:#538ac6\";i:2;s:10:\"color:#fff\";}}i:218;a:2:{i:0;a:1:{s:60:\".litespeed-wrap .button:not(.litespeed-btn-large) .dashicons\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:9:\"dashicons\";}}}i:1;a:3:{i:0;s:17:\"position:relative\";i:1;s:11:\"top:-.075em\";i:2;s:21:\"vertical-align:middle\";}}i:219;a:2:{i:0;a:1:{s:41:\".litespeed-wrap .button:not(:first-child)\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";}}}i:1;a:1:{i:0;s:15:\"margin-left:5px\";}}i:220;a:2:{i:0;a:1:{s:33:\".litespeed-wrap .button + .button\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:6:\"button\";}}}i:1;a:1:{i:0;s:16:\"margin-left:10px\";}}i:221;a:2:{i:0;a:1:{s:22:\".litespeed-info-button\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-info-button\";}}}i:1;a:8:{i:0;s:13:\"color:#c8c8c8\";i:1;s:9:\"padding:0\";i:2;s:23:\"-webkit-appearance:none\";i:3;s:11:\"border:none\";i:4;s:15:\"background:none\";i:5;s:21:\"vertical-align:middle\";i:6;s:19:\"line-height:inherit\";i:7;s:20:\"text-decoration:none\";}}i:222;a:2:{i:0;a:1:{s:33:\".litespeed-info-button .dashicons\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-info-button\";i:1;s:9:\"dashicons\";}}}i:1;a:2:{i:0;s:14:\"font-size:16px\";i:1;s:21:\"vertical-align:middle\";}}i:223;a:2:{i:0;a:1:{s:18:\".litespeed-btn-pie\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-btn-pie\";}}}i:1;a:8:{i:0;s:23:\"-webkit-appearance:none\";i:1;s:15:\"background:none\";i:2;s:11:\"border:none\";i:3;s:15:\"border-radius:0\";i:4;s:15:\"box-shadow:none\";i:5;s:9:\"padding:0\";i:6;s:8:\"margin:0\";i:7;s:11:\"top:-.125em\";}}i:224;a:2:{i:0;a:1:{s:35:\".litespeed-wrap .litespeed-btn-tiny\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-btn-tiny\";}}}i:1;a:3:{i:0;s:15:\"padding:2px 8px\";i:1;s:15:\"line-height:1.5\";i:2;s:11:\"height:auto\";}}i:225;a:2:{i:0;a:1:{s:35:\".litespeed-wrap .litespeed-btn-mini\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-btn-mini\";}}}i:1;a:4:{i:0;s:17:\"padding:0 8px 1px\";i:1;s:14:\"font-size:12px\";i:2;s:15:\"font-weight:600\";i:3;s:12:\"margin:5px 0\";}}i:226;a:2:{i:0;a:1:{s:69:\".litespeed-wrap .litespeed-btn-mini .dashicons.dashicons-image-rotate\";a:1:{i:1;a:4:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-btn-mini\";i:2;s:9:\"dashicons\";i:3;s:22:\"dashicons-image-rotate\";}}}i:1;a:2:{i:0;s:15:\"padding-top:3px\";i:1;s:14:\"font-size:18px\";}}i:227;a:2:{i:0;a:1:{s:46:\".litespeed-wrap .litespeed-btn-mini .dashicons\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-btn-mini\";i:2;s:9:\"dashicons\";}}}i:1;a:1:{i:0;s:15:\"padding-top:2px\";}}i:228;a:2:{i:0;a:1:{s:36:\".litespeed-wrap .litespeed-btn-large\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:19:\"litespeed-btn-large\";}}}i:1;a:4:{i:0;s:15:\"font-size:1.5em\";i:1;s:19:\"padding:.75em 1.5em\";i:2;s:14:\"margin:0 .25em\";i:3;s:11:\"height:auto\";}}i:229;a:2:{i:0;a:1:{s:47:\".litespeed-wrap .litespeed-btn-large .dashicons\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:19:\"litespeed-btn-large\";i:2;s:9:\"dashicons\";}}}i:1;a:2:{i:0;s:16:\"font-size:1.25em\";i:1;s:10:\"width:auto\";}}i:230;a:2:{i:0;a:1:{s:17:\".litespeed-switch\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}}}i:1;a:5:{i:0;s:14:\"font-size:14px\";i:1;s:15:\"font-weight:600\";i:2;s:12:\"margin:0 0 0\";i:3;s:19:\"display:inline-flex\";i:4;s:17:\"position:relative\";}}i:231;a:2:{i:0;a:1:{s:22:\".rtl .litespeed-switch\";a:1:{i:1;a:2:{i:0;s:3:\"rtl\";i:1;s:16:\"litespeed-switch\";}}}i:1;a:1:{i:0;s:26:\"flex-direction:row-reverse\";}}i:232;a:2:{i:0;a:1:{s:46:\".litespeed-switch input:checked:active + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:74:\"box-shadow:0 2px 0 rgba(27,146,146,.7),inset 0 2px 5px -3px rgba(0,0,0,.5)\";}}i:233;a:2:{i:0;a:1:{s:39:\".litespeed-switch input:checked + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:6:{i:0;s:24:\"background-color:#36b0b0\";i:1;s:10:\"color:#fff\";i:2;s:24:\"border:1px solid #36b0b0\";i:3;s:26:\"box-shadow:0 2px 0 #1b9292\";i:4;s:9:\"z-index:2\";i:5;s:85:\"text-shadow:0 -1px 1px #1b9292,1px 0 1px #1b9292,0 1px 1px #1b9292,-1px 0 1px #1b9292\";}}i:234;a:2:{i:0;a:1:{s:23:\".litespeed-switch label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:12:{i:0;s:14:\"font-size:14px\";i:1;s:20:\"display:inline-block\";i:2;s:14:\"min-width:72px\";i:3;s:24:\"background-color:#f9fafc\";i:4;s:15:\"font-weight:400\";i:5;s:17:\"text-align:center\";i:6;s:25:\"padding:6px 12px 5px 12px\";i:7;s:14:\"cursor:pointer\";i:8;s:21:\"border:1px solid #ccc\";i:9;s:18:\"border-bottom:none\";i:10;s:23:\"box-shadow:0 2px 0 #ccc\";i:11;s:17:\"position:relative\";}}i:235;a:2:{i:0;a:1:{s:40:\".litespeed-switch label:not(:last-child)\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:17:\"margin-right:-1px\";}}i:236;a:2:{i:0;a:1:{s:34:\".litespeed-switch label:last-child\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:2:{i:0;s:27:\"border-top-right-radius:3px\";i:1;s:30:\"border-bottom-right-radius:3px\";}}i:237;a:2:{i:0;a:1:{s:37:\".litespeed-switch label:first-of-type\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:2:{i:0;s:26:\"border-top-left-radius:3px\";i:1;s:29:\"border-bottom-left-radius:3px\";}}i:238;a:2:{i:0;a:1:{s:37:\".litespeed-switch input:hover + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:4:{i:0;s:20:\"border-color:#1a9292\";i:1;s:26:\"box-shadow:0 2px 0 #1a9292\";i:2;s:9:\"z-index:2\";i:3;s:13:\"color:#117171\";}}i:239;a:2:{i:0;a:1:{s:37:\".litespeed-switch input:focus + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:4:{i:0;s:13:\"color:#117171\";i:1;s:45:\"box-shadow:0 0px 0px 2px rgba(28,138,128,.85)\";i:2;s:24:\"border-color:transparent\";i:3;s:9:\"z-index:2\";}}i:240;a:2:{i:0;a:2:{s:67:\".litespeed-switch input:focus + label + input + input:hover + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:5:{i:0;s:5:\"input\";i:1;s:5:\"label\";i:2;s:5:\"input\";i:3;s:5:\"input\";i:4;s:5:\"label\";}}s:59:\".litespeed-switch input:focus + label + input:hover + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:4:{i:0;s:5:\"input\";i:1;s:5:\"label\";i:2;s:5:\"input\";i:3;s:5:\"label\";}}}i:1;a:1:{i:0;s:9:\"z-index:1\";}}i:241;a:2:{i:0;a:1:{s:38:\".litespeed-switch input:active + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:62:\"box-shadow:0 2px 0 #1b9292,inset 0 2px 5px -3px rgba(0,0,0,.5)\";}}i:242;a:2:{i:0;a:2:{s:45:\".litespeed-switch input:checked:hover + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}s:45:\".litespeed-switch input:checked:focus + label\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:2:{i:0;s:5:\"input\";i:1;s:5:\"label\";}}}i:1;a:2:{i:0;s:24:\"background-color:#36b0b0\";i:1;s:10:\"color:#fff\";}}i:243;a:2:{i:0;a:1:{s:23:\".litespeed-switch input\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:10:\"z-index:-1\";i:3;s:8:\"margin:0\";}}i:244;a:2:{i:0;a:1:{s:29:\".litespeed-cache-purgeby-text\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-cache-purgeby-text\";}}}i:1;a:2:{i:0;s:8:\"margin:0\";i:1;s:20:\"display:inline-block\";}}i:245;a:2:{i:0;a:1:{s:23:\".litespeed-toggle-stack\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-toggle-stack\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:21:\"flex-direction:column\";}}i:246;a:2:{i:0;a:1:{s:49:\".litespeed-toggle-stack .litespeed-toggle-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-toggle-stack\";i:1;s:24:\"litespeed-toggle-wrapper\";}}}i:1;a:1:{i:0;s:29:\"justify-content:space-between\";}}i:247;a:2:{i:0;a:1:{s:25:\".litespeed-toggle-wrapper\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-toggle-wrapper\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";}}i:248;a:2:{i:0;a:1:{s:53:\".litespeed-toggle-wrapper + .litespeed-toggle-wrapper\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-toggle-wrapper\";i:1;s:24:\"litespeed-toggle-wrapper\";}}}i:1;a:1:{i:0;s:17:\"margin-top:.75rem\";}}i:249;a:2:{i:0;a:1:{s:17:\".litespeed-toggle\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-toggle\";}}}i:1;a:4:{i:0;s:17:\"position:relative\";i:1;s:15:\"overflow:hidden\";i:2;s:14:\"min-width:58px\";i:3;s:11:\"height:21px\";}}i:250;a:2:{i:0;a:1:{s:23:\".litespeed-toggle-group\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-toggle-group\";}}}i:1;a:9:{i:0;s:17:\"position:absolute\";i:1;s:10:\"width:200%\";i:2;s:5:\"top:0\";i:3;s:8:\"bottom:0\";i:4;s:6:\"left:0\";i:5;s:20:\"transition:left .35s\";i:6;s:28:\"-webkit-transition:left .35s\";i:7;s:21:\"-moz-user-select:none\";i:8;s:24:\"-webkit-user-select:none\";}}i:251;a:2:{i:0;a:1:{s:20:\".litespeed-toggle-on\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-toggle-on\";}}}i:1;a:8:{i:0;s:17:\"position:absolute\";i:1;s:5:\"top:0\";i:2;s:8:\"bottom:0\";i:3;s:6:\"left:0\";i:4;s:9:\"right:50%\";i:5;s:8:\"margin:0\";i:6;s:8:\"border:0\";i:7;s:15:\"border-radius:0\";}}i:252;a:2:{i:0;a:1:{s:41:\".litespeed-toggle-on.litespeed-toggle-btn\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-toggle-on\";i:1;s:20:\"litespeed-toggle-btn\";}}}i:1;a:1:{i:0;s:18:\"padding-right:24px\";}}i:253;a:2:{i:0;a:1:{s:42:\".litespeed-toggle-off.litespeed-toggle-btn\";a:1:{i:1;a:2:{i:0;s:20:\"litespeed-toggle-off\";i:1;s:20:\"litespeed-toggle-btn\";}}}i:1;a:1:{i:0;s:17:\"padding-left:24px\";}}i:254;a:2:{i:0;a:1:{s:24:\".litespeed-toggle-handle\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-toggle-handle\";}}}i:1;a:7:{i:0;s:17:\"position:relative\";i:1;s:13:\"margin:0 auto\";i:2;s:15:\"padding-top:0px\";i:3;s:18:\"padding-bottom:0px\";i:4;s:11:\"height:100%\";i:5;s:9:\"width:0px\";i:6;s:18:\"border-width:0 1px\";}}i:255;a:2:{i:0;a:1:{s:21:\".litespeed-toggle-off\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-toggle-off\";}}}i:1;a:8:{i:0;s:17:\"position:absolute\";i:1;s:5:\"top:0\";i:2;s:8:\"bottom:0\";i:3;s:8:\"left:50%\";i:4;s:7:\"right:0\";i:5;s:8:\"margin:0\";i:6;s:8:\"border:0\";i:7;s:15:\"border-radius:0\";}}i:256;a:2:{i:0;a:1:{s:44:\".litespeed-toggleoff .litespeed-toggle-group\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-toggleoff\";i:1;s:22:\"litespeed-toggle-group\";}}}i:1;a:1:{i:0;s:10:\"left:-100%\";}}i:257;a:2:{i:0;a:1:{s:21:\".litespeed-toggle-btn\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-toggle-btn\";}}}i:1;a:17:{i:0;s:20:\"display:inline-block\";i:1;s:16:\"padding:5px 10px\";i:2;s:15:\"margin-bottom:0\";i:3;s:14:\"font-size:14px\";i:4;s:15:\"font-weight:400\";i:5;s:22:\"line-height:1.42857143\";i:6;s:17:\"text-align:center\";i:7;s:18:\"white-space:nowrap\";i:8;s:21:\"vertical-align:middle\";i:9;s:14:\"cursor:pointer\";i:10;s:24:\"-webkit-user-select:none\";i:11;s:21:\"-moz-user-select:none\";i:12;s:20:\"-ms-user-select:none\";i:13;s:16:\"user-select:none\";i:14;s:21:\"background-image:none\";i:15;s:28:\"border:1px solid transparent\";i:16;s:17:\"border-radius:4px\";}}i:258;a:2:{i:0;a:1:{s:29:\".litespeed-toggle-btn-primary\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-primary\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:24:\"background-color:#36b0b0\";i:2;s:20:\"border-color:#36b0b0\";}}i:259;a:2:{i:0;a:1:{s:29:\".litespeed-toggle-btn-default\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-default\";}}}i:1;a:3:{i:0;s:10:\"color:#333\";i:1;s:21:\"background-color:#fff\";i:2;s:17:\"border-color:#ccc\";}}i:260;a:2:{i:0;a:4:{s:35:\".litespeed-toggle-btn-success:hover\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-success\";}}s:35:\".litespeed-toggle-btn-success:focus\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-success\";}}s:36:\".litespeed-toggle-btn-success:active\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-success\";}}s:53:\".litespeed-toggle-btn-success.litespeed-toggle-active\";a:1:{i:1;a:2:{i:0;s:28:\"litespeed-toggle-btn-success\";i:1;s:23:\"litespeed-toggle-active\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:24:\"background-color:#00bfbf\";i:2;s:17:\"border-color:#69c\";}}i:261;a:2:{i:0;a:4:{s:35:\".litespeed-toggle-btn-default:hover\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-default\";}}s:35:\".litespeed-toggle-btn-default:focus\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-default\";}}s:36:\".litespeed-toggle-btn-default:active\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-default\";}}s:53:\".litespeed-toggle-btn-default.litespeed-toggle-active\";a:1:{i:1;a:2:{i:0;s:28:\"litespeed-toggle-btn-default\";i:1;s:23:\"litespeed-toggle-active\";}}}i:1;a:3:{i:0;s:10:\"color:#333\";i:1;s:24:\"background-color:#e6e6e6\";i:2;s:20:\"border-color:#adadad\";}}i:262;a:2:{i:0;a:2:{s:28:\".litespeed-toggle-btn:active\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-toggle-btn\";}}s:45:\".litespeed-toggle-btn.litespeed-toggle-active\";a:1:{i:1;a:2:{i:0;s:20:\"litespeed-toggle-btn\";i:1;s:23:\"litespeed-toggle-active\";}}}i:1;a:4:{i:0;s:21:\"background-image:none\";i:1;s:9:\"outline:0\";i:2;s:51:\"-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125)\";i:3;s:43:\"box-shadow:inset 0 3px 5px rgba(0,0,0,.125)\";}}i:263;a:2:{i:0;a:2:{s:36:\".litespeed-toggle-btn-default:active\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-toggle-btn-default\";}}s:53:\".litespeed-toggle-btn-default.litespeed-toggle-active\";a:1:{i:1;a:2:{i:0;s:28:\"litespeed-toggle-btn-default\";i:1;s:23:\"litespeed-toggle-active\";}}}i:1;a:1:{i:0;s:21:\"background-image:none\";}}i:264;a:2:{i:0;a:1:{s:27:\"[class*=\'litespeed-label-\']\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:10:{i:0;s:14:\"display:inline\";i:1;s:22:\"padding:.2em .6em .3em\";i:2;s:13:\"font-size:75%\";i:3;s:16:\"font-weight:bold\";i:4;s:13:\"line-height:1\";i:5;s:10:\"color:#fff\";i:6;s:17:\"text-align:center\";i:7;s:18:\"white-space:nowrap\";i:8;s:23:\"vertical-align:baseline\";i:9;s:19:\"border-radius:.25em\";}}i:265;a:2:{i:0;a:2:{s:33:\"[class*=\'litespeed-label-\']:hover\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}s:33:\"[class*=\'litespeed-label-\']:focus\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:20:\"text-decoration:none\";i:2;s:14:\"cursor:pointer\";}}i:266;a:2:{i:0;a:1:{s:33:\"[class*=\'litespeed-label-\']:empty\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:267;a:2:{i:0;a:1:{s:24:\".litespeed-label-regular\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-label-regular\";}}}i:1;a:1:{i:0;s:13:\"font-size:1em\";}}i:268;a:2:{i:0;a:1:{s:24:\".litespeed-label-default\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-label-default\";}}}i:1;a:1:{i:0;s:21:\"background-color:#777\";}}i:269;a:2:{i:0;a:2:{s:36:\".litespeed-label-default[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-default\";}}s:36:\".litespeed-label-default[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-default\";}}}i:1;a:1:{i:0;s:24:\"background-color:#5e5e5e\";}}i:270;a:2:{i:0;a:1:{s:24:\".litespeed-label-primary\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-label-primary\";}}}i:1;a:1:{i:0;s:24:\"background-color:#337ab7\";}}i:271;a:2:{i:0;a:2:{s:36:\".litespeed-label-primary[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-primary\";}}s:36:\".litespeed-label-primary[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-primary\";}}}i:1;a:1:{i:0;s:24:\"background-color:#286090\";}}i:272;a:2:{i:0;a:1:{s:24:\".litespeed-label-success\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-label-success\";}}}i:1;a:1:{i:0;s:24:\"background-color:#5cb85c\";}}i:273;a:2:{i:0;a:2:{s:36:\".litespeed-label-success[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-success\";}}s:36:\".litespeed-label-success[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-success\";}}}i:1;a:1:{i:0;s:24:\"background-color:#449d44\";}}i:274;a:2:{i:0;a:1:{s:21:\".litespeed-label-info\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-label-info\";}}}i:1;a:1:{i:0;s:24:\"background-color:#5bc0de\";}}i:275;a:2:{i:0;a:2:{s:33:\".litespeed-label-info[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:20:\"litespeed-label-info\";}}s:33:\".litespeed-label-info[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:20:\"litespeed-label-info\";}}}i:1;a:1:{i:0;s:24:\"background-color:#31b0d5\";}}i:276;a:2:{i:0;a:1:{s:24:\".litespeed-label-warning\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-label-warning\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f0ad4e\";}}i:277;a:2:{i:0;a:2:{s:36:\".litespeed-label-warning[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-warning\";}}s:36:\".litespeed-label-warning[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:23:\"litespeed-label-warning\";}}}i:1;a:1:{i:0;s:24:\"background-color:#ec971f\";}}i:278;a:2:{i:0;a:1:{s:23:\".litespeed-label-danger\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-label-danger\";}}}i:1;a:1:{i:0;s:24:\"background-color:#d9534f\";}}i:279;a:2:{i:0;a:2:{s:35:\".litespeed-label-danger[href]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:22:\"litespeed-label-danger\";}}s:35:\".litespeed-label-danger[href]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"href\";}i:1;a:1:{i:0;s:22:\"litespeed-label-danger\";}}}i:1;a:1:{i:0;s:24:\"background-color:#c9302c\";}}i:280;a:2:{i:0;a:1:{s:16:\".litespeed-shell\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-shell\";}}}i:1;a:9:{i:0;s:9:\"width:98%\";i:1;s:18:\"background:#141414\";i:2;s:23:\"margin:20px auto 0 10px\";i:3;s:33:\"box-shadow:0 0 5px rgba(0,0,0,.4)\";i:4;s:25:\"-webkit-border-radius:3px\";i:5;s:22:\"-moz-border-radius:3px\";i:6;s:17:\"border-radius:3px\";i:7;s:17:\"position:relative\";i:8;s:12:\"height:224px\";}}i:281;a:2:{i:0;a:1:{s:23:\".litespeed-shell-header\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-shell-header\";}}}i:1;a:7:{i:0;s:11:\"z-index:999\";i:1;s:17:\"position:absolute\";i:2;s:5:\"top:0\";i:3;s:7:\"right:0\";i:4;s:10:\"width:50px\";i:5;s:11:\"height:34px\";i:6;s:13:\"padding:5px 0\";}}i:282;a:2:{i:0;a:1:{s:26:\".litespeed-shell-header-bg\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-shell-header-bg\";}}}i:1;a:11:{i:0;s:10:\"opacity:.4\";i:1;s:21:\"background-color:#ccc\";i:2;s:17:\"position:absolute\";i:3;s:5:\"top:0\";i:4;s:8:\"bottom:0\";i:5;s:7:\"right:0\";i:6;s:6:\"left:0\";i:7;s:9:\"z-index:4\";i:8;s:25:\"-webkit-border-radius:3px\";i:9;s:22:\"-moz-border-radius:3px\";i:10;s:21:\"border-top-radius:3px\";}}i:283;a:2:{i:0;a:1:{s:27:\".litespeed-shell-header-bar\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-shell-header-bar\";}}}i:1;a:6:{i:0;s:17:\"position:absolute\";i:1;s:5:\"top:0\";i:2;s:6:\"left:0\";i:3;s:10:\"z-index:10\";i:4;s:10:\"height:2px\";i:5;s:24:\"background-color:#f48024\";}}i:284;a:2:{i:0;a:1:{s:38:\".litespeed-shell-header-icon-container\";a:1:{i:1;a:1:{i:0;s:37:\"litespeed-shell-header-icon-container\";}}}i:1;a:6:{i:0;s:17:\"position:absolute\";i:1;s:8:\"top:10px\";i:2;s:10:\"right:10px\";i:3;s:10:\"width:29px\";i:4;s:11:\"height:34px\";i:5;s:9:\"z-index:6\";}}i:285;a:2:{i:0;a:1:{s:23:\"ul.litespeed-shell-body\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-shell-body\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:19:{i:0;s:17:\"position:absolute\";i:1;s:5:\"top:0\";i:2;s:6:\"left:0\";i:3;s:7:\"right:0\";i:4;s:8:\"bottom:0\";i:5;s:17:\"overflow-y:scroll\";i:6;s:8:\"margin:0\";i:7;s:11:\"padding:5px\";i:8;s:15:\"list-style:none\";i:9;s:18:\"background:#141414\";i:10;s:13:\"color:#45d40c\";i:11;s:46:\"font:.8em \"Andale Mono\",Consolas,\"Courier New\"\";i:12;s:17:\"line-height:1.6em\";i:13;s:38:\"-webkit-border-bottom-right-radius:3px\";i:14;s:37:\"-webkit-border-bottom-left-radius:3px\";i:15;s:34:\"-moz-border-radius-bottomright:3px\";i:16;s:33:\"-moz-border-radius-bottomleft:3px\";i:17;s:30:\"border-bottom-right-radius:3px\";i:18;s:29:\"border-bottom-left-radius:3px\";}}i:286;a:2:{i:0;a:1:{s:31:\".litespeed-shell-body li:before\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-shell-body\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:4:{i:0;s:11:\"content:\">\"\";i:1;s:17:\"position:absolute\";i:2;s:6:\"left:0\";i:3;s:5:\"top:0\";}}i:287;a:2:{i:0;a:1:{s:24:\".litespeed-shell-body li\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-shell-body\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:4:{i:0;s:20:\"word-wrap:break-word\";i:1;s:17:\"position:relative\";i:2;s:18:\"padding:0 0 0 15px\";i:3;s:8:\"margin:0\";}}i:288;a:2:{i:0;a:1:{s:25:\".litespeed-widget-setting\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-widget-setting\";}}}i:1;a:3:{i:0;s:24:\"background-color:#ecebdc\";i:1;s:16:\"padding:5px 14px\";i:2;s:16:\"margin:5px -15px\";}}i:289;a:2:{i:0;a:1:{s:18:\".litespeed-callout\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-callout\";}}}i:1;a:5:{i:0;s:15:\"margin:1.5rem 0\";i:1;s:30:\"border-right:1px solid #e5e5e5\";i:2;s:28:\"border-top:1px solid #e5e5e5\";i:3;s:31:\"border-bottom:1px solid #e5e5e5\";i:4;s:18:\"background:#f9f9f9\";}}i:290;a:2:{i:0;a:1:{s:38:\".litespeed-callout h4:not(:last-child)\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-callout\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:19:\"margin-bottom:.5rem\";i:1;s:14:\"margin-top:1em\";}}i:291;a:2:{i:0;a:1:{s:20:\".litespeed-callout p\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-callout\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:292;a:2:{i:0;a:2:{s:21:\".litespeed-callout ol\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-callout\";}i:0;a:1:{i:0;s:2:\"ol\";}}s:21:\".litespeed-callout ul\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-callout\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:15:\"margin-left:1em\";}}i:293;a:2:{i:0;a:1:{s:36:\".litespeed-callout.notice-warning h4\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-callout\";i:1;s:14:\"notice-warning\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:1:{i:0;s:13:\"color:#e59544\";}}i:294;a:2:{i:0;a:1:{s:34:\".litespeed-callout.notice-error h4\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-callout\";i:1;s:12:\"notice-error\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:1:{i:0;s:13:\"color:#dc3232\";}}i:295;a:2:{i:0;a:1:{s:21:\".litespeed-callout-bg\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-callout-bg\";}}}i:1;a:5:{i:0;s:15:\"margin:1.5rem 0\";i:1;s:18:\"background:#f9f9f9\";i:2;s:15:\"border-top:none\";i:3;s:18:\"border-bottom:none\";i:4;s:17:\"border-right:none\";}}i:296;a:2:{i:0;a:1:{s:23:\".litespeed-tick-wrapper\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-tick-wrapper\";}}}i:1;a:1:{i:0;s:16:\"margin-left:-5px\";}}i:297;a:2:{i:0;a:1:{s:15:\".litespeed-tick\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-tick\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:18:\"background:#f2f9ff\";i:2;s:21:\"padding:5px 0 5px 0px\";i:3;s:17:\"border-radius:3px\";i:4;s:14:\"cursor:pointer\";i:5;s:20:\"margin:5px 5px 5px 0\";}}i:298;a:2:{i:0;a:1:{s:36:\".litespeed-tick-list .litespeed-tick\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-tick-list\";i:1;s:14:\"litespeed-tick\";}}}i:1;a:4:{i:0;s:13:\"display:block\";i:1;s:17:\"margin-bottom:3px\";i:2;s:12:\"margin-top:0\";i:3;s:15:\"background:none\";}}i:299;a:2:{i:0;a:1:{s:59:\".litespeed-tick-list .litespeed-tick input[type=\'checkbox\']\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:19:\"litespeed-tick-list\";i:1;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:300;a:2:{i:0;a:1:{s:42:\".litespeed-tick-list .litespeed-tick label\";a:2:{i:1;a:2:{i:0;s:19:\"litespeed-tick-list\";i:1;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:13:\"color:inherit\";}}i:301;a:2:{i:0;a:1:{s:38:\".litespeed-tick input[type=\'checkbox\']\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:10:{i:0;s:11:\"height:18px\";i:1;s:10:\"width:18px\";i:2;s:21:\"vertical-align:middle\";i:3;s:13:\"margin:0 10px\";i:4;s:23:\"-webkit-appearance:none\";i:5;s:20:\"-moz-appearance:none\";i:6;s:15:\"appearance:none\";i:7;s:25:\"-webkit-border-radius:3px\";i:8;s:17:\"border-radius:3px\";i:9;s:14:\"cursor:pointer\";}}i:302;a:2:{i:0;a:1:{s:59:\".litespeed-tick input[type=\'checkbox\']:not(:disabled):hover\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:20:\"border-color:#538ac6\";}}i:303;a:2:{i:0;a:1:{s:60:\".litespeed-tick input[type=\'checkbox\']:active:not(:disabled)\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:20:\"border-color:#538ac6\";}}i:304;a:2:{i:0;a:1:{s:44:\".litespeed-tick input[type=\'checkbox\']:focus\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:12:\"outline:none\";}}i:305;a:2:{i:0;a:1:{s:46:\".litespeed-tick input[type=\'checkbox\']:checked\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:5:{i:0;s:20:\"border-color:#538ac6\";i:1;s:24:\"background-color:#538ac6\";i:2;s:20:\"-moz-box-shadow:none\";i:3;s:23:\"-webkit-box-shadow:none\";i:4;s:15:\"box-shadow:none\";}}i:306;a:2:{i:0;a:1:{s:53:\".litespeed-tick input[type=\'checkbox\']:checked:before\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:11:{i:0;s:10:\"content:\"\"\";i:1;s:13:\"display:block\";i:2;s:9:\"width:5px\";i:3;s:11:\"height:11px\";i:4;s:17:\"border:solid #fff\";i:5;s:24:\"border-width:0 2px 2px 0\";i:6;s:31:\"-webkit-transform:rotate(45deg)\";i:7;s:23:\"transform:rotate(45deg)\";i:8;s:15:\"margin-left:5px\";i:9;s:15:\"margin-top:-1px\";i:10;s:14:\"cursor:pointer\";}}i:307;a:2:{i:0;a:1:{s:21:\".litespeed-tick label\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:3:{i:0;s:21:\"padding:2px 0px 2px 0\";i:1;s:14:\"font-size:14px\";i:2;s:13:\"color:#264d73\";}}i:308;a:2:{i:0;a:1:{s:27:\".litespeed-tick label:hover\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-tick\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:2:{i:0;s:15:\"min-width:115px\";i:1;s:10:\"color:#69c\";}}i:309;a:2:{i:0;a:1:{s:20:\".litespeed-radio-row\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-radio-row\";}}}i:1;a:3:{i:0;s:18:\"margin-bottom:12px\";i:1;s:17:\"position:relative\";i:2;s:19:\"padding-left:1.5rem\";}}i:310;a:2:{i:0;a:1:{s:40:\".litespeed-radio-row input[type=\'radio\']\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:19:\"litespeed-radio-row\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:7:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";i:2;s:17:\"position:absolute\";i:3;s:13:\"line-height:1\";i:4;s:6:\"left:0\";i:5;s:8:\"top:.7em\";i:6;s:26:\"transform:translateY(-50%)\";}}i:311;a:2:{i:0;a:1:{s:26:\".litespeed-radio-row label\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-radio-row\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:2:{i:0;s:26:\"vertical-align:text-bottom\";i:1;s:15:\"line-height:1.4\";}}i:312;s:37:\"@media screen and (max-width: 782px){\";i:313;a:2:{i:0;a:1:{s:20:\".litespeed-radio-row\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-radio-row\";}}}i:1;a:1:{i:0;s:17:\"padding-left:2rem\";}}i:314;s:1:\"}\";i:315;a:2:{i:0;a:1:{s:39:\".litespeed-wrap .litespeed-float-submit\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:22:\"litespeed-float-submit\";}}}i:1;a:4:{i:0;s:17:\"position:absolute\";i:1;s:7:\"right:0\";i:2;s:8:\"top:-5px\";i:3;s:12:\"margin-top:0\";}}i:316;a:2:{i:0;a:1:{s:44:\".rtl .litespeed-wrap .litespeed-float-submit\";a:1:{i:1;a:3:{i:0;s:3:\"rtl\";i:1;s:14:\"litespeed-wrap\";i:2;s:22:\"litespeed-float-submit\";}}}i:1;a:2:{i:0;s:9:\"left:10px\";i:1;s:11:\"right:unset\";}}i:317;a:2:{i:0;a:1:{s:41:\".litespeed-wrap .litespeed-float-resetbtn\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:24:\"litespeed-float-resetbtn\";}}}i:1;a:3:{i:0;s:17:\"position:absolute\";i:1;s:7:\"right:0\";i:2;s:11:\"bottom:20px\";}}i:318;a:2:{i:0;a:1:{s:46:\".rtl .litespeed-wrap .litespeed-float-resetbtn\";a:1:{i:1;a:3:{i:0;s:3:\"rtl\";i:1;s:14:\"litespeed-wrap\";i:2;s:24:\"litespeed-float-resetbtn\";}}}i:1;a:2:{i:0;s:9:\"left:10px\";i:1;s:11:\"right:unset\";}}i:319;a:2:{i:0;a:1:{s:33:\".litespeed .litespeed-input-large\";a:1:{i:1;a:2:{i:0;s:9:\"litespeed\";i:1;s:21:\"litespeed-input-large\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:320;a:2:{i:0;a:1:{s:21:\".litespeed-input-long\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-input-long\";}}}i:1;a:1:{i:0;s:9:\"width:87%\";}}i:321;a:2:{i:0;a:1:{s:23:\".litespeed-input-short2\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-input-short2\";}}}i:1;a:1:{i:0;s:11:\"width:150px\";}}i:322;a:2:{i:0;a:1:{s:22:\".litespeed-input-short\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-input-short\";}}}i:1;a:1:{i:0;s:10:\"width:45px\";}}i:323;s:37:\"@media screen and (max-width: 680px){\";i:324;a:2:{i:0;a:1:{s:23:\".litespeed-input-short2\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-input-short2\";}}}i:1;a:1:{i:0;s:11:\"width:160px\";}}i:325;a:2:{i:0;a:1:{s:22:\".litespeed-input-short\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-input-short\";}}}i:1;a:1:{i:0;s:10:\"width:50px\";}}i:326;s:1:\"}\";i:327;a:2:{i:0;a:1:{s:21:\".litespeed-form-label\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-form-label\";}}}i:1;a:4:{i:0;s:13:\"font-size:1em\";i:1;s:15:\"margin:.65rem 0\";i:2;s:13:\"display:block\";i:3;s:15:\"font-weight:600\";}}i:328;a:2:{i:0;a:1:{s:29:\".litespeed-form-label--toggle\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-form-label--toggle\";}}}i:1;a:3:{i:0;s:8:\"margin:0\";i:1;s:20:\"display:inline-block\";i:2;s:15:\"min-width:110px\";}}i:329;a:2:{i:0;a:1:{s:34:\"input.litespeed-input[type=\'file\']\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:15:\"litespeed-input\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:8:{i:0;s:11:\"padding:9px\";i:1;s:15:\"min-width:500px\";i:2;s:21:\"border:1px solid #ddd\";i:3;s:42:\"box-shadow:inset 0 1px 2px rgba(0,0,0,.07)\";i:4;s:21:\"background-color:#fff\";i:5;s:13:\"color:#32373c\";i:6;s:9:\"outline:0\";i:7;s:40:\"transition:50ms border-color ease-in-out\";}}i:330;a:2:{i:0;a:1:{s:43:\".litespeed-body .litespeed-textarea-success\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:26:\"litespeed-textarea-success\";}}}i:1;a:1:{i:0;s:17:\"border-color:#69c\";}}i:331;a:2:{i:0;a:1:{s:29:\"input.litespeed-input-success\";a:2:{i:1;a:1:{i:0;s:23:\"litespeed-input-success\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:20:\"border-color:#28a745\";}}i:332;a:2:{i:0;a:1:{s:29:\"input.litespeed-input-warning\";a:2:{i:1;a:1:{i:0;s:23:\"litespeed-input-warning\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:20:\"border-color:#e59544\";}}i:333;a:2:{i:0;a:1:{s:19:\".litespeed-textarea\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-textarea\";}}}i:1;a:1:{i:0;s:9:\"width:60%\";}}i:334;a:2:{i:0;a:1:{s:31:\".litespeed-textarea-recommended\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-textarea-recommended\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-top:-5px\";}}i:335;a:2:{i:0;a:1:{s:47:\".litespeed-textarea-recommended .litespeed-desc\";a:1:{i:1;a:2:{i:0;s:30:\"litespeed-textarea-recommended\";i:1;s:14:\"litespeed-desc\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:336;a:2:{i:0;a:1:{s:49:\".litespeed-textarea-recommended > div:first-child\";a:2:{i:1;a:1:{i:0;s:30:\"litespeed-textarea-recommended\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:3:{i:0;s:16:\"margin-top:1.7em\";i:1;s:14:\"font-size:12px\";i:2;s:17:\"margin-right:25px\";}}i:337;a:2:{i:0;a:1:{s:44:\".litespeed-wrap .litespeed-collection-button\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:27:\"litespeed-collection-button\";}}}i:1;a:3:{i:0;s:20:\"text-decoration:none\";i:1;s:14:\"min-width:30px\";i:2;s:17:\"text-align:center\";}}i:338;a:2:{i:0;a:1:{s:47:\".litespeed-collection-button[data-action=\'add\']\";a:2:{i:3;a:1:{i:0;s:11:\"data-action\";}i:1;a:1:{i:0;s:27:\"litespeed-collection-button\";}}}i:1;a:2:{i:0;s:15:\"margin-top:-5px\";i:1;s:16:\"margin-left:-5px\";}}i:339;a:2:{i:0;a:1:{s:39:\".litespeed-collection-button .dashicons\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-collection-button\";i:1;s:9:\"dashicons\";}}}i:1;a:1:{i:0;s:23:\"vertical-align:baseline\";}}i:340;a:2:{i:0;a:1:{s:82:\".litespeed-wrap .button:not(.litespeed-btn-large).litespeed-form-action .dashicons\";a:1:{i:1;a:4:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:21:\"litespeed-form-action\";i:3;s:9:\"dashicons\";}}}i:1;a:3:{i:0;s:15:\"font-size:1.2em\";i:1;s:21:\"vertical-align:middle\";i:2;s:5:\"top:0\";}}i:341;s:37:\"@media screen and (max-width: 680px){\";i:342;a:2:{i:0;a:1:{s:31:\".litespeed-body tbody > tr > th\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}i:0;a:3:{i:0;s:5:\"tbody\";i:1;s:2:\"tr\";i:2;s:2:\"th\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:23:\"padding:18px 0 5px 12px\";}}i:343;a:2:{i:0;a:1:{s:35:\".litespeed-body .litespeed-table td\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:15:\"litespeed-table\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:14:\"max-width:100%\";}}i:344;a:2:{i:0;a:2:{s:63:\".litespeed-body .litespeed-table textarea:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:15:\"litespeed-table\";}i:0;a:1:{i:0;s:8:\"textarea\";}}s:83:\".litespeed-body .litespeed-table input.litespeed-regular-text:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:3:{i:0;s:14:\"litespeed-body\";i:1;s:15:\"litespeed-table\";i:2;s:22:\"litespeed-regular-text\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:345;a:2:{i:0;a:1:{s:39:\".litespeed-wrap .litespeed-float-submit\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:22:\"litespeed-float-submit\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:346;a:2:{i:0;a:1:{s:15:\".litespeed-body\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-body\";}}}i:1;a:1:{i:0;s:26:\"padding:1px 10px 20px 15px\";}}i:347;a:2:{i:0;a:1:{s:57:\".litespeed-body .regular-text:not(.litespeed-input-short)\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:12:\"regular-text\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:348;a:2:{i:0;a:1:{s:31:\".litespeed-textarea-recommended\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-textarea-recommended\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:349;a:2:{i:0;a:1:{s:49:\".litespeed-textarea-recommended > div:first-child\";a:2:{i:1;a:1:{i:0;s:30:\"litespeed-textarea-recommended\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:3:{i:0;s:19:\"margin-bottom:1.7em\";i:1;s:12:\"margin-top:0\";i:2;s:14:\"margin-right:0\";}}i:350;a:2:{i:0;a:1:{s:17:\".litespeed-switch\";a:1:{i:1;a:1:{i:0;s:16:\"litespeed-switch\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:14:\"flex-wrap:wrap\";}}i:351;a:2:{i:0;a:1:{s:38:\".litespeed-switch + .litespeed-warning\";a:1:{i:1;a:2:{i:0;s:16:\"litespeed-switch\";i:1;s:17:\"litespeed-warning\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:15:\"margin-top:10px\";}}i:352;a:2:{i:0;a:1:{s:34:\"input.litespeed-input[type=\'file\']\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:1:{i:0;s:15:\"litespeed-input\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:2:{i:0;s:27:\"max-width:calc(100% - 24px)\";i:1;s:11:\"min-width:0\";}}i:353;a:2:{i:0;a:1:{s:52:\".litespeed-body .litespeed-table .litespeed-row-flex\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-body\";i:1;s:15:\"litespeed-table\";i:2;s:18:\"litespeed-row-flex\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:354;s:1:\"}\";i:355;a:2:{i:0;a:1:{s:21:\".litespeed-ent-notice\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-ent-notice\";}}}i:1;a:11:{i:0;s:17:\"position:absolute\";i:1;s:6:\"left:0\";i:2;s:5:\"top:0\";i:3;s:7:\"right:0\";i:4;s:8:\"bottom:0\";i:5;s:21:\"background-color:#333\";i:6;s:11:\"z-index:999\";i:7;s:10:\"opacity:.8\";i:8;s:17:\"text-align:center\";i:9;s:14:\"font-size:3rem\";i:10;s:13:\"color:#1865c5\";}}i:356;a:2:{i:0;a:1:{s:26:\".litespeed-ent-notice-desc\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-ent-notice-desc\";}}}i:1;a:4:{i:0;s:17:\"position:relative\";i:1;s:7:\"top:30%\";i:2;s:24:\"transform:rotate(-20deg)\";i:3;s:28:\"text-shadow:2px 2px 4px #000\";}}i:357;a:2:{i:0;a:2:{s:23:\".litespeed-banner-promo\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-banner-promo\";}}s:28:\".litespeed-banner-promo-full\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-banner-promo-full\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:11:\"padding:0px\";}}i:358;a:2:{i:0;a:1:{s:28:\".litespeed-banner-promo-full\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-banner-promo-full\";}}}i:1;a:2:{i:0;s:10:\"margin:0px\";i:1;s:11:\"padding:0px\";}}i:359;a:2:{i:0;a:1:{s:28:\".litespeed-banner-promo-logo\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-banner-promo-logo\";}}}i:1;a:5:{i:0;s:114:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/lscwp-logo_90x90.png\")\";i:1;s:23:\"background-size:contain\";i:2;s:10:\"width:90px\";i:3;s:27:\"background-repeat:no-repeat\";i:4;s:20:\"display:inline-block\";}}i:360;a:2:{i:0;a:1:{s:57:\".litespeed-banner-promo-full .litespeed-banner-promo-logo\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-banner-promo-full\";i:1;s:27:\"litespeed-banner-promo-logo\";}}}i:1;a:3:{i:0;s:10:\"margin:0px\";i:1;s:10:\"width:90px\";i:2;s:11:\"height:90px\";}}i:361;a:2:{i:0;a:1:{s:31:\".litespeed-banner-promo-content\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-banner-promo-content\";}}}i:1;a:1:{i:0;s:16:\"margin-left:25px\";}}i:362;a:2:{i:0;a:1:{s:60:\".litespeed-banner-promo-full .litespeed-banner-promo-content\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-banner-promo-full\";i:1;s:30:\"litespeed-banner-promo-content\";}}}i:1;a:1:{i:0;s:9:\"width:75%\";}}i:363;a:2:{i:0;a:1:{s:34:\".litespeed-banner-promo-content h1\";a:2:{i:1;a:1:{i:0;s:30:\"litespeed-banner-promo-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:3:{i:0;s:15:\"font-weight:600\";i:1;s:13:\"color:#538ac6\";i:2;s:15:\"margin-top:10px\";}}i:364;a:2:{i:0;a:1:{s:23:\".litespeed-banner-title\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-banner-title\";}}}i:1;a:2:{i:0;s:15:\"font-size:1.3em\";i:1;s:22:\"margin:8px 0px 5px 0px\";}}i:365;a:2:{i:0;a:1:{s:33:\".litespeed-banner-promo-slacklogo\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-banner-promo-slacklogo\";}}}i:1;a:8:{i:0;s:108:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/slack-logo.png\")\";i:1;s:23:\"background-size:contain\";i:2;s:10:\"width:75px\";i:3;s:11:\"height:75px\";i:4;s:27:\"background-repeat:no-repeat\";i:5;s:20:\"display:inline-block\";i:6;s:11:\"padding:0px\";i:7;s:11:\"flex:0 0 5%\";}}i:366;a:2:{i:0;a:1:{s:59:\".litespeed-banner-promo .litespeed-banner-promo-slack-line1\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-banner-promo\";i:1;s:34:\"litespeed-banner-promo-slack-line1\";}}}i:1;a:3:{i:0;s:14:\"font-size:18px\";i:1;s:14:\"margin-top:0px\";i:2;s:16:\"line-height:21px\";}}i:367;a:2:{i:0;a:1:{s:62:\".litespeed-banner-promo .litespeed-banner-promo-slack-textlink\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-banner-promo\";i:1;s:37:\"litespeed-banner-promo-slack-textlink\";}}}i:1;a:2:{i:0;s:13:\"color:#e59544\";i:1;s:20:\"text-decoration:none\";}}i:368;a:2:{i:0;a:1:{s:68:\".litespeed-banner-promo .litespeed-banner-promo-slack-textlink:hover\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-banner-promo\";i:1;s:37:\"litespeed-banner-promo-slack-textlink\";}}}i:1;a:1:{i:0;s:10:\"opacity:.8\";}}i:369;a:2:{i:0;a:1:{s:35:\".litespeed-banner-promo-slack-line2\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-banner-promo-slack-line2\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:10:\"margin:0px\";i:2;s:17:\"line-height:.75em\";}}i:370;a:2:{i:0;a:1:{s:34:\".litespeed-banner-promo-slack-link\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-banner-promo-slack-link\";}}}i:1;a:1:{i:0;s:10:\"color:#888\";}}i:371;a:2:{i:0;a:1:{s:51:\"a.litespeed-btn-xs.litespeed-banner-promo-slack-btn\";a:2:{i:1;a:2:{i:0;s:16:\"litespeed-btn-xs\";i:1;s:32:\"litespeed-banner-promo-slack-btn\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:14:\"margin:0px 5px\";}}i:372;a:2:{i:0;a:1:{s:26:\".litespeed-banner-promo-qc\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-banner-promo-qc\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:373;a:2:{i:0;a:1:{s:29:\".litespeed-banner-promo-qc h2\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-banner-promo-qc\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:15:\"line-height:1.4\";}}i:374;a:2:{i:0;a:1:{s:34:\".litespeed-banner-promo-qc-content\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-banner-promo-qc-content\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";}}i:375;a:2:{i:0;a:1:{s:38:\".litespeed-banner-promo-qc-description\";a:1:{i:1;a:1:{i:0;s:37:\"litespeed-banner-promo-qc-description\";}}}i:1;a:2:{i:0;s:14:\"flex-basis:50%\";i:1;s:18:\"padding-right:2rem\";}}i:376;a:2:{i:0;a:1:{s:40:\".litespeed-banner-promo-qc-description p\";a:2:{i:1;a:1:{i:0;s:37:\"litespeed-banner-promo-qc-description\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:14:\"font-size:14px\";}}i:377;a:2:{i:0;a:1:{s:46:\".litespeed-banner-promo-qc-description .button\";a:1:{i:1;a:2:{i:0;s:37:\"litespeed-banner-promo-qc-description\";i:1;s:6:\"button\";}}}i:1;a:1:{i:0;s:19:\"margin-right:1.5rem\";}}i:378;a:2:{i:0;a:1:{s:24:\".litespeed-tweet-preview\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-tweet-preview\";}}}i:1;a:7:{i:0;s:17:\"border-radius:5px\";i:1;s:18:\"line-height:1.3125\";i:2;s:38:\"box-shadow:1px 1px .5em rgba(0,0,0,.3)\";i:3;s:21:\"margin:.5em 1em 1em 0\";i:4;s:11:\"padding:1em\";i:5;s:15:\"max-width:480px\";i:6;s:12:\"display:flex\";}}i:379;a:2:{i:0;a:1:{s:30:\".litespeed-tweet-preview:after\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-tweet-preview\";}}}i:1;a:3:{i:0;s:10:\"content:\"\"\";i:1;s:13:\"display:block\";i:2;s:10:\"clear:both\";}}i:380;a:2:{i:0;a:1:{s:38:\".litespeed-tweet-preview p:first-child\";a:2:{i:1;a:1:{i:0;s:23:\"litespeed-tweet-preview\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:381;a:2:{i:0;a:1:{s:30:\".litespeed-tweet-preview-title\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-tweet-preview-title\";}}}i:1;a:6:{i:0;s:10:\"color:#777\";i:1;s:15:\"margin-top:.9em\";i:2;s:15:\"margin-top:.9em\";i:3;s:18:\"font-weight:normal\";i:4;s:14:\"font-size:12px\";i:5;s:15:\"margin-bottom:0\";}}i:382;a:2:{i:0;a:1:{s:21:\".litespeed-tweet-text\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-tweet-text\";}}}i:1;a:2:{i:0;s:105:\"font:14px system-ui,-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Ubuntu,\"Helvetica Neue\",sans-serif\";i:1;s:18:\"line-height:1.3125\";}}i:383;a:2:{i:0;a:1:{s:20:\".litespeed-tweet-cta\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-cta\";}}}i:1;a:2:{i:0;s:16:\"text-align:right\";i:1;s:14:\"margin-top:1em\";}}i:384;a:2:{i:0;a:1:{s:22:\".litespeed-tweet-cta a\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:9:{i:0;s:24:\"background-color:#1da1f2\";i:1;s:18:\"line-height:1.3125\";i:2;s:10:\"color:#fff\";i:3;s:16:\"font-weight:bold\";i:4;s:19:\"display:inline-flex\";i:5;s:17:\"padding:.55em 1em\";i:6;s:14:\"font-size:14px\";i:7;s:18:\"border-radius:99em\";i:8;s:20:\"text-decoration:none\";}}i:385;a:2:{i:0;a:1:{s:28:\".litespeed-tweet-cta a:hover\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:24:\"background-color:#1e98e1\";}}i:386;a:2:{i:0;a:1:{s:26:\".litespeed-tweet-cta a svg\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-cta\";}i:0;a:2:{i:0;s:1:\"a\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:10:\"width:16px\";i:1;s:11:\"height:18px\";i:2;s:17:\"margin-right:.5em\";}}i:387;a:2:{i:0;a:1:{s:31:\".litespeed-tweet-cta a svg path\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-cta\";}i:0;a:3:{i:0;s:1:\"a\";i:1;s:3:\"svg\";i:2;s:4:\"path\";}}}i:1;a:1:{i:0;s:17:\"fill:currentColor\";}}i:388;a:2:{i:0;a:1:{s:20:\".litespeed-tweet-img\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-img\";}}}i:1;a:3:{i:0;s:24:\"width:calc(240px + 1rem)\";i:1;s:18:\"padding-right:1rem\";i:2;s:21:\"box-sizing:border-box\";}}i:389;a:2:{i:0;a:2:{s:28:\".litespeed-tweet-img amp-img\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-img\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:29:\".litespeed-tweet-img amp-anim\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-img\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:21:\"vertical-align:middle\";}}i:390;a:2:{i:0;a:1:{s:24:\".litespeed-tweet-img + p\";a:2:{i:1;a:1:{i:0;s:19:\"litespeed-tweet-img\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:391;a:2:{i:0;a:1:{s:21:\".litespeed-media-href\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-media-href\";}}}i:1;a:1:{i:0;s:20:\"display:inline-table\";}}i:392;a:2:{i:0;a:1:{s:32:\"[class*=\'litespeed-icon-media-\']\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:7:{i:0;s:23:\"background-size:contain\";i:1;s:10:\"width:25px\";i:2;s:11:\"height:25px\";i:3;s:21:\"vertical-align:middle\";i:4;s:8:\"margin:0\";i:5;s:27:\"background-repeat:no-repeat\";i:6;s:20:\"display:inline-block\";}}i:393;a:2:{i:0;a:1:{s:38:\"[class*=\'litespeed-icon-media-\']:hover\";a:1:{i:3;a:1:{i:0;s:5:\"class\";}}}i:1;a:1:{i:0;s:10:\"opacity:.7\";}}i:394;a:2:{i:0;a:1:{s:26:\".litespeed-icon-media-webp\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-icon-media-webp\";}}}i:1;a:1:{i:0;s:112:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/img_webp.svg\")\";}}i:395;a:2:{i:0;a:1:{s:35:\".litespeed-icon-media-webp-disabled\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-icon-media-webp-disabled\";}}}i:1;a:1:{i:0;s:121:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/img_webp_disabled.svg\")\";}}i:396;a:2:{i:0;a:1:{s:26:\".litespeed-icon-media-optm\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-icon-media-optm\";}}}i:1;a:1:{i:0;s:112:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/img_optm.svg\")\";}}i:397;a:2:{i:0;a:1:{s:35:\".litespeed-icon-media-optm-disabled\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-icon-media-optm-disabled\";}}}i:1;a:1:{i:0;s:121:\"background-image:url(\"https://lion288slot.com/wp-content/plugins/litespeed-cache/assets/img/icons/img_optm_disabled.svg\")\";}}i:398;a:2:{i:0;a:1:{s:41:\"p.litespeed-media-p:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-media-p\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1px\";}}i:399;a:2:{i:0;a:1:{s:20:\"p.litespeed-txt-webp\";a:2:{i:1;a:1:{i:0;s:18:\"litespeed-txt-webp\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:13:\"color:#83b04a\";}}i:400;a:2:{i:0;a:1:{s:19:\"p.litespeed-txt-ori\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-txt-ori\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:13:\"color:#5967b3\";}}i:401;a:2:{i:0;a:1:{s:24:\"p.litespeed-txt-disabled\";a:2:{i:1;a:1:{i:0;s:22:\"litespeed-txt-disabled\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:13:\"color:#ced2d9\";}}i:402;a:2:{i:0;a:1:{s:20:\".litespeed-media-svg\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-media-svg\";}}}i:1;a:4:{i:0;s:21:\"vertical-align:middle\";i:1;s:10:\"margin:5px\";i:2;s:10:\"width:25px\";i:3;s:11:\"height:auto\";}}i:403;s:39:\"@keyframes litespeed-circle-chart-fill{\";i:404;s:26:\"to{stroke-dasharray:0 100}\";i:405;s:1:\"}\";i:406;a:2:{i:0;a:1:{s:14:\".litespeed-pie\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-pie\";}}}i:1;a:2:{i:0;s:21:\"vertical-align:middle\";i:1;s:20:\"margin:5px 5px 5px 0\";}}i:407;a:2:{i:0;a:1:{s:23:\"circle.litespeed-pie_bg\";a:2:{i:1;a:1:{i:0;s:16:\"litespeed-pie_bg\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:3:{i:0;s:14:\"stroke:#efefef\";i:1;s:14:\"stroke-width:2\";i:2;s:9:\"fill:none\";}}i:408;a:2:{i:0;a:1:{s:27:\"circle.litespeed-pie_circle\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:8:{i:0;s:48:\"animation:litespeed-circle-chart-fill 2s reverse\";i:1;s:39:\"animation:litespeed-pie-fill 2s reverse\";i:2;s:24:\"transform:rotate(-90deg)\";i:3;s:23:\"transform-origin:center\";i:4;s:14:\"stroke:#28a745\";i:5;s:14:\"stroke-width:2\";i:6;s:20:\"stroke-linecap:round\";i:7;s:9:\"fill:none\";}}i:409;a:2:{i:0;a:1:{s:33:\".litespeed-pie.litespeed-pie-tiny\";a:1:{i:1;a:2:{i:0;s:13:\"litespeed-pie\";i:1;s:18:\"litespeed-pie-tiny\";}}}i:1;a:1:{i:0;s:16:\"margin:0 2px 0 0\";}}i:410;a:2:{i:0;a:1:{s:38:\".litespeed-pie.litespeed-pie-tiny text\";a:2:{i:1;a:2:{i:0;s:13:\"litespeed-pie\";i:1;s:18:\"litespeed-pie-tiny\";}i:0;a:1:{i:0;s:4:\"text\";}}}i:1;a:2:{i:0;s:16:\"font-weight:bold\";i:1;s:12:\"fill:#828282\";}}i:411;a:2:{i:0;a:1:{s:40:\".litespeed-pie.litespeed-pie-tiny circle\";a:2:{i:1;a:2:{i:0;s:13:\"litespeed-pie\";i:1;s:18:\"litespeed-pie-tiny\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:22:\"stroke-linecap:initial\";}}i:412;a:2:{i:0;a:2:{s:43:\".litespeed-pie-tiny circle.litespeed-pie_bg\";a:2:{i:1;a:2:{i:0;s:18:\"litespeed-pie-tiny\";i:1;s:16:\"litespeed-pie_bg\";}i:0;a:1:{i:0;s:6:\"circle\";}}s:47:\".litespeed-pie-tiny circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:18:\"litespeed-pie-tiny\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke-width:3\";}}i:413;a:2:{i:0;a:1:{s:43:\".litespeed-pie-tiny circle.litespeed-pie_bg\";a:2:{i:1;a:2:{i:0;s:18:\"litespeed-pie-tiny\";i:1;s:16:\"litespeed-pie_bg\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:11:\"stroke:#eee\";}}i:414;a:2:{i:0;a:1:{s:50:\".litespeed-pie-success circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-pie-success\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#28a745\";}}i:415;a:2:{i:0;a:1:{s:50:\".litespeed-pie-warning circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-pie-warning\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#e67700\";}}i:416;a:2:{i:0;a:1:{s:49:\".litespeed-pie-danger circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:20:\"litespeed-pie-danger\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#c7221f\";}}i:417;a:2:{i:0;a:1:{s:25:\"g.litespeed-pie_info text\";a:2:{i:1;a:1:{i:0;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:3:{i:0;s:25:\"dominant-baseline:central\";i:1;s:18:\"text-anchor:middle\";i:2;s:14:\"font-size:11px\";}}i:418;a:2:{i:0;a:1:{s:48:\".litespeed-promo-score g.litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-promo-score\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:2:{i:0;s:14:\"font-size:14px\";i:1;s:15:\"font-weight:600\";}}i:419;a:2:{i:0;a:1:{s:48:\".litespeed-pie-success g.litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-pie-success\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:1:{i:0;s:12:\"fill:#28a745\";}}i:420;a:2:{i:0;a:1:{s:48:\".litespeed-pie-warning g.litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-pie-warning\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:1:{i:0;s:12:\"fill:#e67700\";}}i:421;a:2:{i:0;a:1:{s:47:\".litespeed-pie-danger g.litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:20:\"litespeed-pie-danger\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:1:{i:0;s:12:\"fill:#c7221f\";}}i:422;a:2:{i:0;a:1:{s:40:\"g.litespeed-pie_info .litespeed-pie-done\";a:2:{i:1;a:2:{i:0;s:18:\"litespeed-pie_info\";i:1;s:18:\"litespeed-pie-done\";}i:0;a:1:{i:0;s:1:\"g\";}}}i:1;a:2:{i:0;s:12:\"fill:#28a745\";i:1;s:14:\"font-size:15px\";}}i:423;a:2:{i:0;a:1:{s:73:\"[data-litespeed-cdn-mapping]:first-child [data-litespeed-cdn-mapping-del]\";a:1:{i:3;a:2:{i:0;s:26:\"data-litespeed-cdn-mapping\";i:1;s:30:\"data-litespeed-cdn-mapping-del\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:424;a:2:{i:0;a:1:{s:27:\".litespeed-cdn-mapping-col1\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-cdn-mapping-col1\";}}}i:1;a:2:{i:0;s:18:\"padding-right:2rem\";i:1;s:13:\"max-width:35%\";}}i:425;a:2:{i:0;a:1:{s:49:\".litespeed-cdn-mapping-col1 .litespeed-input-long\";a:1:{i:1;a:2:{i:0;s:26:\"litespeed-cdn-mapping-col1\";i:1;s:20:\"litespeed-input-long\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:426;a:2:{i:0;a:1:{s:27:\".litespeed-cdn-mapping-col2\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-cdn-mapping-col2\";}}}i:1;a:1:{i:0;s:18:\"padding-top:.25rem\";}}i:427;a:2:{i:0;a:1:{s:33:\".litespeed-cdn-mapping-col1 label\";a:2:{i:1;a:1:{i:0;s:26:\"litespeed-cdn-mapping-col1\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:17:\"position:relative\";}}i:428;a:2:{i:0;a:1:{s:32:\"[data-litespeed-cdn-mapping-del]\";a:1:{i:3;a:1:{i:0;s:30:\"data-litespeed-cdn-mapping-del\";}}}i:1;a:3:{i:0;s:17:\"position:absolute\";i:1;s:10:\"right:-6px\";i:2;s:8:\"top:-6px\";}}i:429;s:37:\"@media screen and (max-width: 600px){\";i:430;a:2:{i:0;a:1:{s:27:\".litespeed-cdn-mapping-col1\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-cdn-mapping-col1\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:431;s:1:\"}\";i:432;a:2:{i:0;a:1:{s:23:\".litespeed-crawler-curr\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-crawler-curr\";}}}i:1;a:3:{i:0;s:21:\"vertical-align:middle\";i:1;s:11:\"height:20px\";i:2;s:16:\"margin-left:10px\";}}i:433;a:2:{i:0;a:1:{s:31:\"#cookie_crawler > p:first-child\";a:2:{i:2;a:1:{i:0;s:14:\"cookie_crawler\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:14:\"margin-top:5px\";}}i:434;a:2:{i:0;a:1:{s:30:\".litespeed-crawler-sitemap-nav\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-crawler-sitemap-nav\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:29:\"justify-content:space-between\";}}i:435;a:2:{i:0;a:1:{s:36:\".litespeed-crawler-sitemap-nav > div\";a:2:{i:1;a:1:{i:0;s:29:\"litespeed-crawler-sitemap-nav\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:15:\"margin-top:10px\";}}i:436;s:37:\"@media screen and (max-width: 680px){\";i:437;a:2:{i:0;a:1:{s:30:\".litespeed-crawler-sitemap-nav\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-crawler-sitemap-nav\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:438;a:2:{i:0;a:1:{s:27:\".litespeed-table-responsive\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-table-responsive\";}}}i:1;a:3:{i:0;s:10:\"clear:both\";i:1;s:15:\"overflow-x:auto\";i:2;s:32:\"-webkit-overflow-scrolling:touch\";}}i:439;a:2:{i:0;a:1:{s:33:\".litespeed-table-responsive table\";a:2:{i:1;a:1:{i:0;s:26:\"litespeed-table-responsive\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:440;a:2:{i:0;a:1:{s:30:\".litespeed-table-responsive th\";a:2:{i:1;a:1:{i:0;s:26:\"litespeed-table-responsive\";}i:0;a:1:{i:0;s:2:\"th\";}}}i:1;a:1:{i:0;s:16:\"text-wrap:nowrap\";}}i:441;a:2:{i:0;a:1:{s:77:\".litespeed-table-responsive [data-crawler-list].wp-list-table td:nth-child(2)\";a:3:{i:3;a:1:{i:0;s:17:\"data-crawler-list\";}i:1;a:2:{i:0;s:26:\"litespeed-table-responsive\";i:1;s:13:\"wp-list-table\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:1:{i:0;s:15:\"min-width:115px\";}}i:442;a:2:{i:0;a:1:{s:54:\".litespeed-wrap input[name=\'kw\']:not(#_#_#_#_#_#_#_#_)\";a:3:{i:3;a:1:{i:0;s:4:\"name\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:443;s:1:\"}\";i:444;a:2:{i:0;a:1:{s:23:\".litespeed-progress-bar\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-progress-bar\";}}}i:1;a:14:{i:0;s:19:\"display:-webkit-box\";i:1;s:19:\"display:-ms-flexbox\";i:2;s:12:\"display:flex\";i:3;s:27:\"-webkit-box-orient:vertical\";i:4;s:28:\"-webkit-box-direction:normal\";i:5;s:25:\"-ms-flex-direction:column\";i:6;s:21:\"flex-direction:column\";i:7;s:23:\"-webkit-box-pack:center\";i:8;s:20:\"-ms-flex-pack:center\";i:9;s:22:\"justify-content:center\";i:10;s:10:\"color:#fff\";i:11;s:17:\"text-align:center\";i:12;s:24:\"background-color:#007bff\";i:13;s:25:\"transition:width .6s ease\";}}i:445;a:2:{i:0;a:1:{s:30:\".litespeed-progress-bar-yellow\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-progress-bar-yellow\";}}}i:1;a:1:{i:0;s:24:\"background-color:#fbe100\";}}i:446;a:2:{i:0;a:1:{s:19:\".litespeed-progress\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-progress\";}}}i:1;a:10:{i:0;s:19:\"display:-webkit-box\";i:1;s:19:\"display:-ms-flexbox\";i:2;s:12:\"display:flex\";i:3;s:11:\"height:12px\";i:4;s:15:\"overflow:hidden\";i:5;s:16:\"font-size:.75rem\";i:6;s:24:\"background-color:#e9ecef\";i:7;s:21:\"border:1px solid #ddd\";i:8;s:17:\"border-radius:8px\";i:9;s:9:\"width:75%\";}}i:447;a:2:{i:0;a:1:{s:39:\".litespeed-progress:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-progress\";}}}i:1;a:1:{i:0;s:24:\"margin:5em 1em 1.5em 1em\";}}i:448;a:2:{i:0;a:1:{s:16:\".litespeed-modal\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-modal\";}}}i:1;a:1:{i:0;s:15:\"margin-top:-8px\";}}i:449;a:2:{i:0;a:1:{s:36:\".litespeed-modal .litespeed-progress\";a:1:{i:1;a:2:{i:0;s:15:\"litespeed-modal\";i:1;s:18:\"litespeed-progress\";}}}i:1;a:2:{i:0;s:16:\"margin-left:-8px\";i:1;s:17:\"margin-right:-8px\";}}i:450;a:2:{i:0;a:1:{s:16:\".litespeed-guide\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-guide\";}}}i:1;a:3:{i:0;s:24:\"border:1px solid #73b38d\";i:1;s:13:\"max-width:50%\";i:2;s:12:\"padding:20px\";}}i:451;a:2:{i:0;a:1:{s:19:\".litespeed-guide h2\";a:2:{i:1;a:1:{i:0;s:15:\"litespeed-guide\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:6:{i:0;s:13:\"color:#73b38d\";i:1;s:31:\"border-bottom:1px solid #73b38d\";i:2;s:13:\"display:table\";i:3;s:18:\"padding-right:50px\";i:4;s:16:\"padding-left:3px\";i:5;s:18:\"padding-bottom:3px\";}}i:452;a:2:{i:0;a:1:{s:19:\".litespeed-guide li\";a:2:{i:1;a:1:{i:0;s:15:\"litespeed-guide\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:16:\"line-height:30px\";i:2;s:26:\"margin:10px 10px 10px 16px\";}}i:453;a:2:{i:0;a:1:{s:47:\".litespeed-guide li.litespeed-guide-done:before\";a:2:{i:1;a:2:{i:0;s:15:\"litespeed-guide\";i:1;s:20:\"litespeed-guide-done\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:6:{i:0;s:13:\"content:\"✓\"\";i:1;s:14:\"font-size:26px\";i:2;s:13:\"color:#73b38d\";i:3;s:17:\"margin-left:-37px\";i:4;s:17:\"margin-right:18px\";i:5;s:9:\"opacity:1\";}}i:454;a:2:{i:0;a:1:{s:40:\".litespeed-guide li.litespeed-guide-done\";a:2:{i:1;a:2:{i:0;s:15:\"litespeed-guide\";i:1;s:20:\"litespeed-guide-done\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"opacity:.9\";}}i:455;a:2:{i:0;a:1:{s:38:\".litespeed-image-optim-summary-wrapper\";a:1:{i:1;a:1:{i:0;s:37:\"litespeed-image-optim-summary-wrapper\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:456;a:2:{i:0;a:2:{s:57:\".litespeed-cache_page_litespeed-img_optm .nav-tab-wrapper\";a:1:{i:1;a:2:{i:0;s:39:\"litespeed-cache_page_litespeed-img_optm\";i:1;s:15:\"nav-tab-wrapper\";}}s:52:\".litespeed-cache_page_litespeed-cdn .nav-tab-wrapper\";a:1:{i:1;a:2:{i:0;s:34:\"litespeed-cache_page_litespeed-cdn\";i:1;s:15:\"nav-tab-wrapper\";}}}i:1;a:1:{i:0;s:27:\"border-bottom-color:#e5e5e5\";}}i:457;a:2:{i:0;a:2:{s:56:\".litespeed-cache_page_litespeed-img_optm .litespeed-body\";a:1:{i:1;a:2:{i:0;s:39:\"litespeed-cache_page_litespeed-img_optm\";i:1;s:14:\"litespeed-body\";}}s:51:\".litespeed-cache_page_litespeed-cdn .litespeed-body\";a:1:{i:1;a:2:{i:0;s:34:\"litespeed-cache_page_litespeed-cdn\";i:1;s:14:\"litespeed-body\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:458;a:2:{i:0;a:2:{s:86:\".litespeed-cache_page_litespeed-img_optm .litespeed-wrap .nav-tab:not(.nav-tab-active)\";a:1:{i:1;a:3:{i:0;s:39:\"litespeed-cache_page_litespeed-img_optm\";i:1;s:14:\"litespeed-wrap\";i:2;s:7:\"nav-tab\";}}s:81:\".litespeed-cache_page_litespeed-cdn .litespeed-wrap .nav-tab:not(.nav-tab-active)\";a:1:{i:1;a:3:{i:0;s:34:\"litespeed-cache_page_litespeed-cdn\";i:1;s:14:\"litespeed-wrap\";i:2;s:7:\"nav-tab\";}}}i:1;a:1:{i:0;s:27:\"border-bottom-color:#e5e5e5\";}}i:459;a:2:{i:0;a:2:{s:56:\".litespeed-cache_page_litespeed-img_optm .nav-tab-active\";a:1:{i:1;a:2:{i:0;s:39:\"litespeed-cache_page_litespeed-img_optm\";i:1;s:14:\"nav-tab-active\";}}s:51:\".litespeed-cache_page_litespeed-cdn .nav-tab-active\";a:1:{i:1;a:2:{i:0;s:34:\"litespeed-cache_page_litespeed-cdn\";i:1;s:14:\"nav-tab-active\";}}}i:1;a:5:{i:0;s:25:\"border-left-color:#e5e5e5\";i:1;s:26:\"border-right-color:#e5e5e5\";i:2;s:24:\"border-top-color:#e5e5e5\";i:3;s:17:\"position:relative\";i:4;s:9:\"z-index:2\";}}i:460;a:2:{i:0;a:2:{s:74:\".litespeed-cache_page_litespeed-img_optm [data-litespeed-layout=\'summary\']\";a:2:{i:3;a:1:{i:0;s:21:\"data-litespeed-layout\";}i:1;a:1:{i:0;s:39:\"litespeed-cache_page_litespeed-img_optm\";}}s:64:\".litespeed-cache_page_litespeed-cdn [data-litespeed-layout=\'qc\']\";a:2:{i:3;a:1:{i:0;s:21:\"data-litespeed-layout\";}i:1;a:1:{i:0;s:34:\"litespeed-cache_page_litespeed-cdn\";}}}i:1;a:2:{i:0;s:29:\"margin:-2px -21px -21px -21px\";i:1;s:18:\"background:#f0f0f1\";}}i:461;a:2:{i:0;a:1:{s:27:\".litespeed-column-secondary\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-column-secondary\";}}}i:1;a:1:{i:0;s:18:\"background:#f9fafc\";}}i:462;a:2:{i:0;a:1:{s:37:\".litespeed-column-with-boxes .postbox\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-column-with-boxes\";i:1;s:7:\"postbox\";}}}i:1;a:1:{i:0;s:20:\"border-color:#e5e5e5\";}}i:463;a:2:{i:0;a:1:{s:50:\".litespeed-column-with-boxes .litespeed-width-7-10\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-column-with-boxes\";i:1;s:20:\"litespeed-width-7-10\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:464;s:37:\"@media screen and (min-width: 815px){\";i:465;a:2:{i:0;a:1:{s:56:\".litespeed-column-with-boxes > div.litespeed-column-left\";a:2:{i:1;a:2:{i:0;s:27:\"litespeed-column-with-boxes\";i:1;s:21:\"litespeed-column-left\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:18:\"padding-right:25px\";}}i:466;s:1:\"}\";i:467;a:2:{i:0;a:1:{s:57:\".litespeed-column-with-boxes > div.litespeed-column-right\";a:2:{i:1;a:2:{i:0;s:27:\"litespeed-column-with-boxes\";i:1;s:22:\"litespeed-column-right\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:4:{i:0;s:18:\"background:#f1f1f1\";i:1;s:13:\"padding-top:0\";i:2;s:15:\"padding-right:0\";i:3;s:14:\"padding-left:0\";}}i:468;a:2:{i:0;a:1:{s:87:\".litespeed-column-with-boxes > div.litespeed-column-right .litespeed-postbox:last-child\";a:2:{i:1;a:3:{i:0;s:27:\"litespeed-column-with-boxes\";i:1;s:22:\"litespeed-column-right\";i:2;s:17:\"litespeed-postbox\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:469;a:2:{i:0;a:2:{s:30:\".litespeed-image-optim-summary\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-image-optim-summary\";}}s:29:\".litespeed-column-left-inside\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-column-left-inside\";}}}i:1;a:5:{i:0;s:36:\"box-shadow:0 1px 1px rgba(0,0,0,.04)\";i:1;s:17:\"position:relative\";i:2;s:26:\"padding:1px 20px 20px 20px\";i:3;s:15:\"background:#fff\";i:4;s:24:\"border:1px solid #e5e5e5\";}}i:470;a:2:{i:0;a:2:{s:37:\".litespeed-image-optim-summary-footer\";a:1:{i:1;a:1:{i:0;s:36:\"litespeed-image-optim-summary-footer\";}}s:35:\".litespeed-column-with-boxes-footer\";a:1:{i:1;a:1:{i:0;s:34:\"litespeed-column-with-boxes-footer\";}}}i:1;a:4:{i:0;s:28:\"border-top:1px solid #efefef\";i:1;s:18:\"background:#f9f9f9\";i:2;s:12:\"padding:20px\";i:3;s:23:\"margin:20px -20px -20px\";}}i:471;a:2:{i:0;a:1:{s:24:\".litespeed-help-btn-icon\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-help-btn-icon\";}}}i:1;a:3:{i:0;s:20:\"text-decoration:none\";i:1;s:16:\"margin-left:10px\";i:2;s:13:\"color:#c8c8c8\";}}i:472;a:2:{i:0;a:1:{s:56:\".litespeed-postbox-imgopt-info .litespeed-flex-container\";a:1:{i:1;a:2:{i:0;s:29:\"litespeed-postbox-imgopt-info\";i:1;s:24:\"litespeed-flex-container\";}}}i:1;a:1:{i:0;s:18:\"align-items:center\";}}i:473;a:2:{i:0;a:1:{s:73:\".litespeed-postbox-imgopt-info .litespeed-flex-container:not(:last-child)\";a:1:{i:1;a:2:{i:0;s:29:\"litespeed-postbox-imgopt-info\";i:1;s:24:\"litespeed-flex-container\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.65em\";}}i:474;a:2:{i:0;a:1:{s:70:\".litespeed-postbox-imgopt-info .litespeed-flex-container p:first-child\";a:2:{i:1;a:2:{i:0;s:29:\"litespeed-postbox-imgopt-info\";i:1;s:24:\"litespeed-flex-container\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:475;a:2:{i:0;a:2:{s:47:\".litespeed-image-optim-summary > h3:first-child\";a:2:{i:1;a:1:{i:0;s:29:\"litespeed-image-optim-summary\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:46:\".litespeed-column-left-inside > h3:first-child\";a:2:{i:1;a:1:{i:0;s:28:\"litespeed-column-left-inside\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:2:{i:0;s:16:\"margin-top:1.6em\";i:1;s:15:\"font-size:1.2em\";}}i:476;a:2:{i:0;a:2:{s:68:\".litespeed-image-optim-summary > h3:first-child .litespeed-quic-icon\";a:2:{i:1;a:2:{i:0;s:29:\"litespeed-image-optim-summary\";i:1;s:19:\"litespeed-quic-icon\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:67:\".litespeed-column-left-inside > h3:first-child .litespeed-quic-icon\";a:2:{i:1;a:2:{i:0;s:28:\"litespeed-column-left-inside\";i:1;s:19:\"litespeed-quic-icon\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:4:{i:0;s:11:\"width:1.2em\";i:1;s:12:\"height:1.4em\";i:2;s:23:\"background-size:contain\";i:3;s:18:\"margin-right:.2rem\";}}i:477;a:2:{i:0;a:1:{s:28:\".litespeed-img-optim-actions\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-img-optim-actions\";}}}i:1;a:4:{i:0;s:17:\"margin-top:1.65em\";i:1;s:12:\"display:flex\";i:2;s:20:\"align-items:flex-end\";i:3;s:14:\"flex-wrap:wrap\";}}i:478;a:2:{i:0;a:1:{s:44:\".litespeed-img-optim-actions .button-primary\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-img-optim-actions\";i:1;s:14:\"button-primary\";}}}i:1;a:5:{i:0;s:15:\"font-size:1.2em\";i:1;s:16:\"margin-right:1em\";i:2;s:19:\"padding:.35em .85em\";i:3;s:15:\"min-width:210px\";i:4;s:17:\"text-align:center\";}}i:479;s:38:\"@media screen and (max-width: 1079px){\";i:480;a:2:{i:0;a:1:{s:34:\".litespeed-postbox-imgopt-info svg\";a:2:{i:1;a:1:{i:0;s:29:\"litespeed-postbox-imgopt-info\";}i:0;a:1:{i:0;s:3:\"svg\";}}}i:1;a:2:{i:0;s:11:\"height:50px\";i:1;s:10:\"width:50px\";}}i:481;s:1:\"}\";i:482;s:37:\"@media screen and (max-width: 814px){\";i:483;a:2:{i:0;a:1:{s:46:\".litespeed-column-with-boxes > div:first-child\";a:2:{i:1;a:1:{i:0;s:27:\"litespeed-column-with-boxes\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:2:{i:0;s:15:\"padding-right:0\";i:1;s:18:\"margin-bottom:1rem\";}}i:484;s:1:\"}\";i:485;s:37:\"@media screen and (max-width: 680px){\";i:486;a:2:{i:0;a:1:{s:63:\".litespeed-img-optim-actions .button + .button.button-secondary\";a:1:{i:1;a:4:{i:0;s:27:\"litespeed-img-optim-actions\";i:1;s:6:\"button\";i:2;s:6:\"button\";i:3;s:16:\"button-secondary\";}}}i:1;a:2:{i:0;s:13:\"margin-left:0\";i:1;s:15:\"margin-top:10px\";}}i:487;s:1:\"}\";i:488;a:2:{i:0;a:1:{s:43:\".imgoptm.column-imgoptm a[data-balloon-pos]\";a:3:{i:3;a:1:{i:0;s:16:\"data-balloon-pos\";}i:1;a:2:{i:0;s:7:\"imgoptm\";i:1;s:14:\"column-imgoptm\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:24:\"border-bottom:1px dashed\";}}i:489;a:2:{i:0;a:1:{s:25:\".imgoptm.column-imgoptm p\";a:2:{i:1;a:2:{i:0;s:7:\"imgoptm\";i:1;s:14:\"column-imgoptm\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:2:{i:0;s:19:\"margin-bottom:.25em\";i:1;s:12:\"margin-top:0\";}}i:490;a:2:{i:0;a:1:{s:40:\".imgoptm.column-imgoptm p + .row-actions\";a:2:{i:1;a:3:{i:0;s:7:\"imgoptm\";i:1;s:14:\"column-imgoptm\";i:2;s:11:\"row-actions\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-top:.5em\";}}i:491;a:2:{i:0;a:1:{s:19:\".fixed .column-lqip\";a:1:{i:1;a:2:{i:0;s:5:\"fixed\";i:1;s:11:\"column-lqip\";}}}i:1;a:1:{i:0;s:10:\"width:6rem\";}}i:492;a:2:{i:0;a:2:{s:29:\".litespeed-media-lqip amp-img\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-media-lqip\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:30:\".litespeed-media-lqip amp-anim\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-media-lqip\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:14:\"max-width:62px\";i:1;s:15:\"max-height:62px\";}}i:493;a:2:{i:0;a:1:{s:21:\".litespeed-media-href\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-media-href\";}}}i:1;a:1:{i:0;s:14:\"font-size:12px\";}}i:494;a:2:{i:0;a:1:{s:27:\".litespeed-log-view-wrapper\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-log-view-wrapper\";}}}i:1;a:1:{i:0;s:14:\"margin:1.5em 0\";}}i:495;a:2:{i:0;a:1:{s:26:\".litespeed-dashboard-group\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-group\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:1rem\";}}i:496;a:2:{i:0;a:1:{s:54:\".litespeed-dashboard-group > .litespeed-flex-container\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:24:\"litespeed-flex-container\";}}}i:1;a:3:{i:0;s:14:\"margin:0 -10px\";i:1;s:14:\"min-width:100%\";i:2;s:10:\"width:auto\";}}i:497;a:2:{i:0;a:1:{s:39:\".litespeed-dashboard .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-dashboard\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:11:\"margin:10px\";}}i:498;a:2:{i:0;a:1:{s:28:\".litespeed-dashboard-title a\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:20:\"text-decoration:none\";i:1;s:18:\"margin-left:.25rem\";}}i:499;a:2:{i:0;a:1:{s:33:\".litespeed-dashboard-title--w-btn\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-dashboard-title--w-btn\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";}}i:500;a:2:{i:0;a:1:{s:41:\".litespeed-dashboard-title--w-btn .button\";a:1:{i:1;a:2:{i:0;s:32:\"litespeed-dashboard-title--w-btn\";i:1;s:6:\"button\";}}}i:1;a:1:{i:0;s:18:\"font-weight:normal\";}}i:501;a:2:{i:0;a:1:{s:39:\".litespeed-postbox-footer .button-small\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-postbox-footer\";i:1;s:12:\"button-small\";}}}i:1;a:1:{i:0;s:21:\"vertical-align:middle\";}}i:502;a:2:{i:0;a:2:{s:50:\".litespeed-postbox .button.button-small .dashicons\";a:1:{i:1;a:4:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"button\";i:2;s:12:\"button-small\";i:3;s:9:\"dashicons\";}}s:65:\".litespeed-dashboard-title--w-btn .button.button-small .dashicons\";a:1:{i:1;a:4:{i:0;s:32:\"litespeed-dashboard-title--w-btn\";i:1;s:6:\"button\";i:2;s:12:\"button-small\";i:3;s:9:\"dashicons\";}}}i:1;a:4:{i:0;s:14:\"font-size:1rem\";i:1;s:9:\"top:.05em\";i:2;s:21:\"vertical-align:middle\";i:3;s:16:\"margin-left:-5px\";}}i:503;a:2:{i:0;a:1:{s:27:\".litespeed-dashboard-header\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-header\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";}}i:504;a:2:{i:0;a:1:{s:88:\".litespeed-postbox p.litespeed-dashboard-stats-total + p.litespeed-dashboard-stats-total\";a:2:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:31:\"litespeed-dashboard-stats-total\";i:2;s:31:\"litespeed-dashboard-stats-total\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.2em\";}}i:505;a:2:{i:0;a:1:{s:39:\".litespeed-dashboard-header:first-child\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-header\";}}}i:1;a:1:{i:0;s:17:\"margin-top:1.5rem\";}}i:506;a:2:{i:0;a:1:{s:30:\".litespeed-dashboard-header hr\";a:2:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-header\";}i:0;a:1:{i:0;s:2:\"hr\";}}}i:1;a:4:{i:0;s:17:\"align-self:center\";i:1;s:11:\"flex-grow:1\";i:2;s:16:\"margin-left:15px\";i:3;s:17:\"margin-right:15px\";}}i:507;a:2:{i:0;a:1:{s:41:\".litespeed-dashboard-header hr:last-child\";a:2:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-header\";}i:0;a:1:{i:0;s:2:\"hr\";}}}i:1;a:1:{i:0;s:14:\"margin-right:0\";}}i:508;a:2:{i:0;a:1:{s:49:\".litespeed-dashboard-header .litespeed-learn-more\";a:1:{i:1;a:2:{i:0;s:26:\"litespeed-dashboard-header\";i:1;s:20:\"litespeed-learn-more\";}}}i:1;a:4:{i:0;s:18:\"font-weight:normal\";i:1;s:20:\"text-decoration:none\";i:2;s:15:\"margin-top:-2px\";i:3;s:13:\"color:#5e7380\";}}i:509;a:2:{i:0;a:1:{s:29:\".litespeed-dashboard-stats h3\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-stats\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:6:{i:0;s:24:\"text-transform:uppercase\";i:1;s:14:\"font-size:12px\";i:2;s:18:\"font-weight:normal\";i:3;s:15:\"margin-bottom:0\";i:4;s:16:\"margin-top:1.2em\";i:5;s:10:\"color:#777\";}}i:510;a:2:{i:0;a:1:{s:33:\".litespeed-dashboard-stats h3 + p\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-stats\";}i:0;a:2:{i:0;s:2:\"h3\";i:1;s:1:\"p\";}}}i:1;a:2:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";}}i:511;a:2:{i:0;a:1:{s:42:\".litespeed-dashboard-stats .litespeed-desc\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-stats\";i:1;s:14:\"litespeed-desc\";}}}i:1;a:1:{i:0;s:10:\"color:#777\";}}i:512;a:2:{i:0;a:1:{s:35:\".litespeed-dashboard-stats p strong\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-stats\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:6:\"strong\";}}}i:1;a:3:{i:0;s:13:\"font-size:2em\";i:1;s:18:\"font-weight:normal\";i:2;s:16:\"margin-right:5px\";}}i:513;a:2:{i:0;a:1:{s:34:\".litespeed-dashboard-stats-wrapper\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:17:\"position:relative\";}}i:514;a:2:{i:0;a:1:{s:53:\".litespeed-dashboard-stats-wrapper .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:2:{i:0;s:8:\"margin:0\";i:1;s:13:\"min-width:20%\";}}i:515;a:2:{i:0;a:2:{s:78:\".litespeed-dashboard-stats-wrapper .litespeed-postbox .inside .litespeed-title\";a:1:{i:1;a:4:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}}s:70:\".litespeed-dashboard-group .litespeed-postbox .inside .litespeed-title\";a:1:{i:1;a:4:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:14px\";}}i:516;a:2:{i:0;a:1:{s:45:\".litespeed-postbox .inside .litespeed-title a\";a:2:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";i:2;s:15:\"litespeed-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:14:\"font-size:13px\";}}i:517;a:2:{i:0;a:1:{s:70:\".litespeed-dashboard-stats-wrapper .litespeed-postbox:not(:last-child)\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:17:\"margin-right:-1px\";}}i:518;a:2:{i:0;a:1:{s:71:\".litespeed-dashboard-stats-wrapper .litespeed-postbox:not(:first-child)\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:25:\"border-left-color:#f9f9f9\";}}i:519;a:2:{i:0;a:1:{s:70:\".litespeed-dashboard-stats-wrapper .litespeed-dashboard-stats p strong\";a:2:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:25:\"litespeed-dashboard-stats\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:6:\"strong\";}}}i:1;a:1:{i:0;s:16:\"font-size:1.4rem\";}}i:520;a:2:{i:0;a:1:{s:49:\".litespeed-dashboard-stats-wrapper .litespeed-pie\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:13:\"litespeed-pie\";}}}i:1;a:2:{i:0;s:10:\"width:60px\";i:1;s:11:\"height:60px\";}}i:521;a:2:{i:0;a:1:{s:81:\".litespeed-dashboard-stats-wrapper .litespeed-flex-container + p:not(:last-child)\";a:2:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:24:\"litespeed-flex-container\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.55em\";}}i:522;a:2:{i:0;a:1:{s:31:\".litespeed-dashboard-stats-payg\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-dashboard-stats-payg\";}}}i:1;a:1:{i:0;s:10:\"color:#777\";}}i:523;a:2:{i:0;a:1:{s:38:\".litespeed-dashboard-stats-payg strong\";a:2:{i:1;a:1:{i:0;s:30:\"litespeed-dashboard-stats-payg\";}i:0;a:1:{i:0;s:6:\"strong\";}}}i:1;a:1:{i:0;s:10:\"color:#444\";}}i:524;a:2:{i:0;a:1:{s:51:\".postbox .inside > p.litespeed-dashboard-stats-payg\";a:2:{i:1;a:3:{i:0;s:7:\"postbox\";i:1;s:6:\"inside\";i:2;s:30:\"litespeed-dashboard-stats-payg\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:17:\"margin-top:1.35em\";}}i:525;a:2:{i:0;a:1:{s:84:\".postbox .inside > p.litespeed-dashboard-stats-payg:last-child:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:3:{i:0;s:7:\"postbox\";i:1;s:6:\"inside\";i:2;s:30:\"litespeed-dashboard-stats-payg\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:-5px\";}}i:526;a:2:{i:0;a:1:{s:52:\".litespeed-postbox p.litespeed-dashboard-stats-total\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:31:\"litespeed-dashboard-stats-total\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:5:{i:0;s:25:\"padding:.75em 20px 0 20px\";i:1;s:26:\"border-top:1px dashed #eee\";i:2;s:16:\"margin-top:.55em\";i:3;s:17:\"margin-left:-20px\";i:4;s:18:\"margin-right:-20px\";}}i:527;a:2:{i:0;a:1:{s:74:\".litespeed-postbox p.litespeed-dashboard-stats-total:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:31:\"litespeed-dashboard-stats-total\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:20:\"margin-bottom:-.55em\";}}i:528;a:2:{i:0;a:1:{s:52:\".litespeed-postbox.litespeed-postbox-partner .inside\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-partner\";i:2;s:6:\"inside\";}}}i:1;a:1:{i:0;s:13:\"margin:11px 0\";}}i:529;a:2:{i:0;a:1:{s:98:\".litespeed-dashboard-stats-wrapper .litespeed-postbox.litespeed-postbox-partner h3.litespeed-title\";a:2:{i:1;a:4:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";i:2;s:25:\"litespeed-postbox-partner\";i:3;s:15:\"litespeed-title\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:3:{i:0;s:10:\"color:#777\";i:1;s:18:\"font-weight:normal\";i:2;s:14:\"font-size:13px\";}}i:530;a:2:{i:0;a:1:{s:46:\".litespeed-postbox.litespeed-postbox-partner a\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-partner\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:6:{i:0;s:17:\"font-size:1.35rem\";i:1;s:16:\"font-weight:bold\";i:2;s:20:\"text-decoration:none\";i:3;s:14:\"margin-top:5px\";i:4;s:14:\"max-width:100%\";i:5;s:20:\"display:inline-block\";}}i:531;a:2:{i:0;a:1:{s:52:\".litespeed-postbox.litespeed-postbox-partner a:hover\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-partner\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:532;a:2:{i:0;a:2:{s:52:\".litespeed-postbox.litespeed-postbox-partner amp-img\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-partner\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:53:\".litespeed-postbox.litespeed-postbox-partner amp-anim\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-partner\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:12rem\";}}i:533;a:2:{i:0;a:1:{s:45:\".litespeed-dashboard-group .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:4:{i:0;s:22:\"width:calc(25% - 20px)\";i:1;s:12:\"display:flex\";i:2;s:21:\"flex-direction:column\";i:3;s:29:\"justify-content:space-between\";}}i:534;a:2:{i:0;a:1:{s:52:\".litespeed-dashboard-group .litespeed-postbox-double\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:24:\"litespeed-postbox-double\";}}}i:1;a:3:{i:0;s:26:\"min-width:calc(50% - 20px)\";i:1;s:12:\"display:flex\";i:2;s:29:\"justify-content:space-between\";}}i:535;a:2:{i:0;a:1:{s:33:\".litespeed-postbox-double-content\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-postbox-double-content\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:22:\"align-items:flex-start\";i:2;s:29:\"justify-content:space-between\";}}i:536;a:2:{i:0;a:1:{s:63:\".litespeed-postbox-double-content .litespeed-postbox-double-col\";a:1:{i:1;a:2:{i:0;s:32:\"litespeed-postbox-double-content\";i:1;s:28:\"litespeed-postbox-double-col\";}}}i:1;a:1:{i:0;s:9:\"width:50%\";}}i:537;a:2:{i:0;a:1:{s:76:\".litespeed-postbox-double-content .litespeed-postbox-double-col:nth-child(2)\";a:1:{i:1;a:2:{i:0;s:32:\"litespeed-postbox-double-content\";i:1;s:28:\"litespeed-postbox-double-col\";}}}i:1;a:1:{i:0;s:17:\"padding-left:10px\";}}i:538;a:2:{i:0;a:1:{s:29:\".litespeed-dashboard-group hr\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-dashboard-group\";}i:0;a:1:{i:0;s:2:\"hr\";}}}i:1;a:1:{i:0;s:24:\"margin:1.5rem 0 .75rem 0\";}}i:539;a:2:{i:0;a:1:{s:45:\".litespeed-postbox .litespeed-postbox-refresh\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-refresh\";}}}i:1;a:6:{i:0;s:20:\"text-decoration:none\";i:1;s:13:\"color:#36b0b0\";i:2;s:13:\"line-height:1\";i:3;s:18:\"vertical-align:top\";i:4;s:17:\"margin-left:.5rem\";i:5;s:15:\"margin-bottom:0\";}}i:540;a:2:{i:0;a:1:{s:63:\".litespeed-postbox .litespeed-postbox-refresh.button .dashicons\";a:1:{i:1;a:4:{i:0;s:17:\"litespeed-postbox\";i:1;s:25:\"litespeed-postbox-refresh\";i:2;s:6:\"button\";i:3;s:9:\"dashicons\";}}}i:1;a:2:{i:0;s:14:\"font-size:22px\";i:1;s:9:\"top:.05em\";}}i:541;a:2:{i:0;a:1:{s:31:\".litespeed-postbox p:last-child\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-postbox\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:542;a:2:{i:0;a:1:{s:26:\".litespeed-label-dashboard\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-label-dashboard\";}}}i:1;a:6:{i:0;s:15:\"font-size:.92em\";i:1;s:28:\"padding:.3em .6em .35em .6em\";i:2;s:18:\"font-weight:normal\";i:3;s:20:\"display:inline-block\";i:4;s:15:\"margin-left:8px\";i:5;s:13:\"min-width:2em\";}}i:543;a:2:{i:0;a:1:{s:38:\".litespeed-label-dashboard:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-label-dashboard\";}}}i:1;a:2:{i:0;s:13:\"margin-left:0\";i:1;s:18:\"margin-right:.35em\";}}i:544;a:2:{i:0;a:1:{s:26:\".litespeed-postbox .inside\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";}}}i:1;a:1:{i:0;s:18:\"padding:0 20px 5px\";}}i:545;a:2:{i:0;a:1:{s:43:\".litespeed-postbox .inside .litespeed-title\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";i:2;s:15:\"litespeed-title\";}}}i:1;a:4:{i:0;s:25:\"margin:0 -20px 12px -20px\";i:1;s:25:\"padding:0px 20px 7px 20px\";i:2;s:28:\"border-bottom:1px solid #eee\";i:3;s:15:\"font-size:1.2em\";}}i:546;a:2:{i:0;a:1:{s:51:\".litespeed-postbox .inside.litespeed-postbox-footer\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";i:2;s:24:\"litespeed-postbox-footer\";}}}i:1;a:5:{i:0;s:28:\"border-top:1px solid #efefef\";i:1;s:18:\"background:#f9f9f9\";i:2;s:12:\"padding:20px\";i:3;s:17:\"margin-bottom:0px\";i:4;s:12:\"margin-top:0\";}}i:547;a:2:{i:0;a:2:{s:27:\".litespeed-postbox-footer a\";a:2:{i:1;a:1:{i:0;s:24:\"litespeed-postbox-footer\";}i:0;a:1:{i:0;s:1:\"a\";}}s:20:\"a.litespeed-redetect\";a:2:{i:1;a:1:{i:0;s:18:\"litespeed-redetect\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:548;a:2:{i:0;a:1:{s:60:\".litespeed-postbox .inside.litespeed-postbox-footer--compact\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";i:2;s:33:\"litespeed-postbox-footer--compact\";}}}i:1;a:2:{i:0;s:25:\"padding:7px 15px 8px 15px\";i:1;s:14:\"font-size:12px\";}}i:549;a:2:{i:0;a:1:{s:40:\".litespeed-postbox-imgopt .litespeed-pie\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-postbox-imgopt\";i:1;s:13:\"litespeed-pie\";}}}i:1;a:2:{i:0;s:10:\"width:55px\";i:1;s:11:\"height:55px\";}}i:550;a:2:{i:0;a:1:{s:51:\".litespeed-postbox-imgopt .litespeed-flex-container\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-postbox-imgopt\";i:1;s:24:\"litespeed-flex-container\";}}}i:1;a:2:{i:0;s:18:\"align-items:center\";i:1;s:18:\"margin-bottom:10px\";}}i:551;a:2:{i:0;a:1:{s:92:\".litespeed-postbox-imgopt .litespeed-flex-container .litespeed-icon-vertical-middle + div h3\";a:2:{i:1;a:3:{i:0;s:24:\"litespeed-postbox-imgopt\";i:1;s:24:\"litespeed-flex-container\";i:2;s:30:\"litespeed-icon-vertical-middle\";}i:0;a:2:{i:0;s:3:\"div\";i:1;s:2:\"h3\";}}}i:1;a:1:{i:0;s:12:\"margin-top:0\";}}i:552;a:2:{i:0;a:1:{s:91:\".litespeed-postbox-imgopt .litespeed-flex-container .litespeed-icon-vertical-middle + div p\";a:2:{i:1;a:3:{i:0;s:24:\"litespeed-postbox-imgopt\";i:1;s:24:\"litespeed-flex-container\";i:2;s:30:\"litespeed-icon-vertical-middle\";}i:0;a:2:{i:0;s:3:\"div\";i:1;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"line-height:1.2\";}}i:553;a:2:{i:0;a:1:{s:82:\".litespeed-postbox-imgopt .litespeed-postbox-double-col:last-child > *:first-child\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-postbox-imgopt\";i:1;s:28:\"litespeed-postbox-double-col\";}}}i:1;a:1:{i:0;s:14:\"margin-top:7px\";}}i:554;a:2:{i:0;a:1:{s:42:\".litespeed-postbox-pagespeed p:first-child\";a:2:{i:1;a:1:{i:0;s:27:\"litespeed-postbox-pagespeed\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:2:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";}}i:555;a:2:{i:0;a:1:{s:32:\".litespeed-postbox-score-improve\";a:1:{i:1;a:1:{i:0;s:31:\"litespeed-postbox-score-improve\";}}}i:1;a:3:{i:0;s:16:\"line-height:45px\";i:1;s:14:\"margin-top:7px\";i:2;s:14:\"font-size:42px\";}}i:556;a:2:{i:0;a:1:{s:65:\".litespeed-postbox-pagespeed .litespeed-padding-space:first-child\";a:1:{i:1;a:2:{i:0;s:27:\"litespeed-postbox-pagespeed\";i:1;s:23:\"litespeed-padding-space\";}}}i:1;a:2:{i:0;s:16:\"padding-left:5px\";i:1;s:17:\"padding-right:5px\";}}i:557;a:2:{i:0;a:1:{s:25:\".litespeed-link-with-icon\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-link-with-icon\";}}}i:1;a:2:{i:0;s:25:\"text-decoration:underline\";i:1;s:18:\"margin-right:.25em\";}}i:558;a:2:{i:0;a:1:{s:36:\".litespeed-link-with-icon .dashicons\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-link-with-icon\";i:1;s:9:\"dashicons\";}}}i:1;a:7:{i:0;s:23:\"vertical-align:baseline\";i:1;s:17:\"position:relative\";i:2;s:8:\"top:.1em\";i:3;s:13:\"font-size:1em\";i:4;s:20:\"text-decoration:none\";i:5;s:10:\"width:auto\";i:6;s:17:\"margin-right:.5em\";}}i:559;a:2:{i:0;a:1:{s:57:\".litespeed-link-with-icon.litespeed-icon-right .dashicons\";a:1:{i:1;a:3:{i:0;s:24:\"litespeed-link-with-icon\";i:1;s:20:\"litespeed-icon-right\";i:2;s:9:\"dashicons\";}}}i:1;a:2:{i:0;s:16:\"margin-left:.5em\";i:1;s:14:\"margin-right:0\";}}i:560;a:2:{i:0;a:1:{s:21:\".litespeed-warning-bg\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-warning-bg\";}}}i:1;a:1:{i:0;s:11:\"color:white\";}}i:561;a:2:{i:0;a:1:{s:41:\".litespeed-warning-bg:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-warning-bg\";}}}i:1;a:1:{i:0;s:24:\"background-color:#b58a09\";}}i:562;a:2:{i:0;a:1:{s:39:\".litespeed-links-group:not(:last-child)\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-links-group\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:563;a:2:{i:0;a:1:{s:52:\".litespeed-links-group > span:not(:last-child):after\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-links-group\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:4:{i:0;s:11:\"content:\"|\"\";i:1;s:13:\"margin:0 10px\";i:2;s:10:\"color:#ddd\";i:3;s:14:\"font-size:13px\";}}i:564;a:2:{i:0;a:1:{s:45:\".litespeed-wrap p.litespeed-qc-dashboard-link\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:27:\"litespeed-qc-dashboard-link\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"margin-left:1rem\";}}i:565;a:2:{i:0;a:1:{s:55:\".litespeed-right.litespeed-qc-dashboard-link .dashicons\";a:1:{i:1;a:3:{i:0;s:15:\"litespeed-right\";i:1;s:27:\"litespeed-qc-dashboard-link\";i:2;s:9:\"dashicons\";}}}i:1;a:2:{i:0;s:16:\"margin-left:.5em\";i:1;s:14:\"margin-right:0\";}}i:566;a:2:{i:0;a:1:{s:20:\".litespeed-score-col\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-score-col\";}}}i:1;a:2:{i:0;s:11:\"flex-grow:1\";i:1;s:18:\"padding-right:15px\";}}i:567;a:2:{i:0;a:1:{s:39:\".litespeed-score-col .litespeed-text-md\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-score-col\";i:1;s:17:\"litespeed-text-md\";}}}i:1;a:1:{i:0;s:17:\"font-size:1.35rem\";}}i:568;a:2:{i:0;a:1:{s:45:\".litespeed-score-col.litespeed-score-col--imp\";a:1:{i:1;a:2:{i:0;s:19:\"litespeed-score-col\";i:1;s:24:\"litespeed-score-col--imp\";}}}i:1;a:2:{i:0;s:16:\"text-align:right\";i:1;s:15:\"padding-right:0\";}}i:569;a:2:{i:0;a:1:{s:47:\".litespeed-score-col--imp .litespeed-text-jumbo\";a:1:{i:1;a:2:{i:0;s:24:\"litespeed-score-col--imp\";i:1;s:20:\"litespeed-text-jumbo\";}}}i:1;a:1:{i:0;s:13:\"line-height:1\";}}i:570;a:2:{i:0;a:1:{s:38:\".litespeed-wrap span[data-balloon-pos]\";a:3:{i:3;a:1:{i:0;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:24:\"border-bottom:1px dashed\";}}i:571;a:2:{i:0;a:1:{s:50:\".litespeed-wrap span[aria-label][data-balloon-pos]\";a:3:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:14:\"cursor:default\";}}i:572;a:2:{i:0;a:1:{s:29:\".litespeed-postbox--quiccloud\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-postbox--quiccloud\";}}}i:1;a:1:{i:0;s:20:\"border-color:#253545\";}}i:573;a:2:{i:0;a:1:{s:72:\".litespeed-postbox--quiccloud.litespeed-postbox .inside .litespeed-title\";a:1:{i:1;a:4:{i:0;s:28:\"litespeed-postbox--quiccloud\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}}}i:1;a:6:{i:0;s:18:\"background:#253545\";i:1;s:13:\"color:#e2e4e5\";i:2;s:16:\"margin-top:-11px\";i:3;s:17:\"padding:10px 15px\";i:4;s:17:\"margin-left:-15px\";i:5;s:18:\"margin-right:-15px\";}}i:574;a:2:{i:0;a:1:{s:74:\".litespeed-postbox--quiccloud.litespeed-postbox .inside .litespeed-title a\";a:2:{i:1;a:4:{i:0;s:28:\"litespeed-postbox--quiccloud\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#8abff8\";}}i:575;a:2:{i:0;a:1:{s:80:\".litespeed-postbox--quiccloud.litespeed-postbox .inside .litespeed-title a:hover\";a:2:{i:1;a:4:{i:0;s:28:\"litespeed-postbox--quiccloud\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#a5caf2\";}}i:576;a:2:{i:0;a:1:{s:20:\".litespeed-overwrite\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-overwrite\";}}}i:1;a:2:{i:0;s:20:\"display:inline-block\";i:1;s:16:\"margin-left:10px\";}}i:577;s:38:\"@media screen and (min-width: 1401px){\";i:578;a:2:{i:0;a:1:{s:72:\".litespeed-postbox--quiccloud.litespeed-postbox .inside .litespeed-title\";a:1:{i:1;a:4:{i:0;s:28:\"litespeed-postbox--quiccloud\";i:1;s:17:\"litespeed-postbox\";i:2;s:6:\"inside\";i:3;s:15:\"litespeed-title\";}}}i:1;a:4:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";i:2;s:17:\"margin-left:-20px\";i:3;s:18:\"margin-right:-20px\";}}i:579;a:2:{i:0;a:1:{s:60:\".litespeed-postbox .inside.litespeed-postbox-footer--compact\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";i:2;s:33:\"litespeed-postbox-footer--compact\";}}}i:1;a:2:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";}}i:580;s:1:\"}\";i:581;s:62:\"@media screen and (max-width: 1400px) and (min-width: 1024px){\";i:582;a:2:{i:0;a:1:{s:53:\".litespeed-dashboard-stats-wrapper .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:11:\"flex-grow:1\";}}i:583;a:2:{i:0;a:1:{s:26:\".litespeed-postbox .inside\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";}}}i:1;a:1:{i:0;s:18:\"padding:0 15px 5px\";}}i:584;a:2:{i:0;a:1:{s:45:\".litespeed-dashboard-group .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:27:\"width:calc(33.3333% - 20px)\";}}i:585;a:2:{i:0;a:1:{s:52:\".litespeed-dashboard-group .litespeed-postbox-double\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:24:\"litespeed-postbox-double\";}}}i:1;a:1:{i:0;s:31:\"min-width:calc(66.6666% - 20px)\";}}i:586;s:1:\"}\";i:587;s:38:\"@media screen and (max-width: 1023px){\";i:588;a:2:{i:0;a:1:{s:34:\".litespeed-dashboard-stats-wrapper\";a:1:{i:1;a:1:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";}}}i:1;a:1:{i:0;s:14:\"flex-wrap:wrap\";}}i:589;a:2:{i:0;a:1:{s:71:\".litespeed-dashboard-stats-wrapper .litespeed-postbox:not(:first-child)\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:25:\"border-left-color:#ccd0d4\";}}i:590;a:2:{i:0;a:1:{s:53:\".litespeed-dashboard-stats-wrapper .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:2:{i:0;s:15:\"margin-top:-1px\";i:1;s:30:\"min-width:calc(33.3333% - 1px)\";}}i:591;a:2:{i:0;a:1:{s:26:\".litespeed-postbox .inside\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:6:\"inside\";}}}i:1;a:1:{i:0;s:18:\"padding:0 15px 5px\";}}i:592;a:2:{i:0;a:1:{s:45:\".litespeed-dashboard-group .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:22:\"width:calc(50% - 20px)\";}}i:593;a:2:{i:0;a:1:{s:52:\".litespeed-dashboard-group .litespeed-postbox-double\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:24:\"litespeed-postbox-double\";}}}i:1;a:1:{i:0;s:27:\"min-width:calc(100% - 20px)\";}}i:594;s:1:\"}\";i:595;s:60:\"@media screen and (max-width: 719px) and (min-width: 480px){\";i:596;a:2:{i:0;a:1:{s:53:\".litespeed-dashboard-stats-wrapper .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:2:{i:0;s:15:\"margin-top:-1px\";i:1;s:25:\"min-width:calc(50% - 2px)\";}}i:597;s:1:\"}\";i:598;s:37:\"@media screen and (max-width: 569px){\";i:599;a:2:{i:0;a:1:{s:53:\".litespeed-dashboard-stats-wrapper .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:33:\"litespeed-dashboard-stats-wrapper\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:14:\"min-width:100%\";}}i:600;a:2:{i:0;a:1:{s:45:\".litespeed-dashboard-group .litespeed-postbox\";a:1:{i:1;a:2:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:601;a:2:{i:0;a:1:{s:63:\".litespeed-postbox-double-content .litespeed-postbox-double-col\";a:1:{i:1;a:2:{i:0;s:32:\"litespeed-postbox-double-content\";i:1;s:28:\"litespeed-postbox-double-col\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:602;a:2:{i:0;a:1:{s:76:\".litespeed-postbox-double-content .litespeed-postbox-double-col:nth-child(2)\";a:1:{i:1;a:2:{i:0;s:32:\"litespeed-postbox-double-content\";i:1;s:28:\"litespeed-postbox-double-col\";}}}i:1;a:2:{i:0;s:14:\"padding-left:0\";i:1;s:14:\"margin-top:7px\";}}i:603;a:2:{i:0;a:1:{s:33:\".litespeed-postbox-double-content\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-postbox-double-content\";}}}i:1;a:1:{i:0;s:14:\"flex-wrap:wrap\";}}i:604;s:1:\"}\";i:605;a:2:{i:0;a:1:{s:23:\".litespeed-dashboard-qc\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-dashboard-qc\";}}}i:1;a:1:{i:0;s:17:\"position:relative\";}}i:606;a:2:{i:0;a:1:{s:27:\".litespeed-dashboard-unlock\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-unlock\";}}}i:1;a:12:{i:0;s:17:\"text-align:center\";i:1;s:21:\"background-color:#fff\";i:2;s:84:\"box-shadow:0 .125rem .4rem -.0625rem rgba(0,0,0,.03),0px 3px 0px 0px rgba(0,0,0,.07)\";i:3;s:19:\"border-radius:.5rem\";i:4;s:12:\"padding:2rem\";i:5;s:17:\"position:absolute\";i:6;s:9:\"z-index:5\";i:7;s:8:\"left:50%\";i:8;s:29:\"transform:translate(-50%,25%)\";i:9;s:5:\"top:0\";i:10;s:13:\"max-width:96%\";i:11;s:11:\"width:540px\";}}i:607;a:2:{i:0;a:1:{s:62:\".litespeed-dashboard-unlock.litespeed-dashboard-unlock--inline\";a:1:{i:1;a:2:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:34:\"litespeed-dashboard-unlock--inline\";}}}i:1;a:8:{i:0;s:17:\"position:relative\";i:1;s:8:\"left:50%\";i:2;s:27:\"transform:translate(-50%,0)\";i:3;s:24:\"border:1px solid #e5e5e5\";i:4;s:18:\"background:#fafafa\";i:5;s:15:\"margin-top:2rem\";i:6;s:18:\"margin-bottom:1rem\";i:7;s:27:\"max-width:calc(100% - 4rem)\";}}i:608;a:2:{i:0;a:1:{s:33:\".litespeed-dashboard-unlock-title\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-dashboard-unlock-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:28px\";}}i:609;a:2:{i:0;a:1:{s:32:\".litespeed-dashboard-unlock-desc\";a:1:{i:1;a:1:{i:0;s:31:\"litespeed-dashboard-unlock-desc\";}}}i:1;a:2:{i:0;s:14:\"font-size:17px\";i:1;s:10:\"color:#000\";}}i:610;a:2:{i:0;a:1:{s:37:\".litespeed-dashboard-unlock-desc span\";a:2:{i:1;a:1:{i:0;s:31:\"litespeed-dashboard-unlock-desc\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:2:{i:0;s:14:\"font-size:14px\";i:1;s:10:\"color:#666\";}}i:611;a:2:{i:0;a:1:{s:35:\"p.litespeed-dashboard-unlock-footer\";a:2:{i:1;a:1:{i:0;s:33:\"litespeed-dashboard-unlock-footer\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:2:{i:0;s:22:\"margin:3em auto 0 auto\";i:1;s:15:\"max-width:500px\";}}i:612;a:2:{i:0;a:1:{s:27:\".litespeed-qc-text-gradient\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-qc-text-gradient\";}}}i:1;a:4:{i:0;s:70:\"background:-webkit-linear-gradient(130deg,#ff2a91,#2295d8 60%,#161f29)\";i:1;s:28:\"-webkit-background-clip:text\";i:2;s:35:\"-webkit-text-fill-color:transparent\";i:3;s:15:\"font-weight:800\";}}i:613;a:2:{i:0;a:2:{s:51:\".litespeed-dashboard-unlock a.button.button-primary\";a:2:{i:1;a:3:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:6:\"button\";i:2;s:14:\"button-primary\";}i:0;a:1:{i:0;s:1:\"a\";}}s:44:\".litespeed-wrap .button.litespeed-button-cta\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:20:\"litespeed-button-cta\";}}}i:1;a:4:{i:0;s:15:\"font-size:1.2em\";i:1;s:29:\"padding:.35em 1em .35em .85em\";i:2;s:15:\"min-width:210px\";i:3;s:17:\"text-align:center\";}}i:614;a:2:{i:0;a:1:{s:51:\".litespeed-dashboard-unlock a.button.button-primary\";a:2:{i:1;a:3:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:6:\"button\";i:2;s:14:\"button-primary\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:15:\"margin-top:10px\";}}i:615;a:2:{i:0;a:2:{s:62:\".litespeed-dashboard-unlock a.button.button-primary .dashicons\";a:2:{i:1;a:4:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:6:\"button\";i:2;s:14:\"button-primary\";i:3;s:9:\"dashicons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:55:\".litespeed-wrap .button.litespeed-button-cta .dashicons\";a:1:{i:1;a:4:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:20:\"litespeed-button-cta\";i:3;s:9:\"dashicons\";}}}i:1;a:3:{i:0;s:23:\"vertical-align:baseline\";i:1;s:9:\"top:.25em\";i:2;s:17:\"margin-right:.5em\";}}i:616;a:2:{i:0;a:1:{s:60:\".litespeed-dashboard-unlock + .litespeed-dashboard-qc-enable\";a:1:{i:1;a:2:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:29:\"litespeed-dashboard-qc-enable\";}}}i:1;a:2:{i:0;s:11:\"opacity:.75\";i:1;s:16:\"filter:blur(2px)\";}}i:617;a:2:{i:0;a:1:{s:67:\".litespeed-dashboard-unlock + .litespeed-dashboard-qc-enable:before\";a:1:{i:1;a:2:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:29:\"litespeed-dashboard-qc-enable\";}}}i:1;a:10:{i:0;s:10:\"content:\"\"\";i:1;s:17:\"position:absolute\";i:2;s:10:\"left:-10px\";i:3;s:8:\"top:-5px\";i:4;s:23:\"width:calc(100% + 20px)\";i:5;s:24:\"height:calc(100% + 10px)\";i:6;s:18:\"background:#161e29\";i:7;s:9:\"z-index:2\";i:8;s:11:\"opacity:.55\";i:9;s:16:\"filter:blur(2px)\";}}i:618;s:38:\"@media screen and (min-width: 1400px){\";i:619;a:2:{i:0;a:1:{s:27:\".litespeed-dashboard-unlock\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-unlock\";}}}i:1;a:1:{i:0;s:11:\"width:800px\";}}i:620;s:1:\"}\";i:621;s:37:\"@media screen and (max-width: 640px){\";i:622;a:2:{i:0;a:1:{s:27:\".litespeed-dashboard-unlock\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-dashboard-unlock\";}}}i:1;a:3:{i:0;s:13:\"max-width:80%\";i:1;s:31:\"padding:1rem 1.5rem 2rem 1.5rem\";i:2;s:29:\"transform:translate(-50%,10%)\";}}i:623;a:2:{i:0;a:1:{s:33:\".litespeed-dashboard-unlock-title\";a:1:{i:1;a:1:{i:0;s:32:\"litespeed-dashboard-unlock-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:22px\";i:1;s:15:\"line-height:1.2\";}}i:624;s:1:\"}\";i:625;s:37:\"@media screen and (max-width: 340px){\";i:626;a:2:{i:0;a:2:{s:51:\".litespeed-dashboard-unlock a.button.button-primary\";a:2:{i:1;a:3:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:6:\"button\";i:2;s:14:\"button-primary\";}i:0;a:1:{i:0;s:1:\"a\";}}s:44:\".litespeed-wrap .button.litespeed-button-cta\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:20:\"litespeed-button-cta\";}}}i:1;a:1:{i:0;s:27:\"padding:.35em 1em .35em 1em\";}}i:627;a:2:{i:0;a:2:{s:62:\".litespeed-dashboard-unlock a.button.button-primary .dashicons\";a:2:{i:1;a:4:{i:0;s:26:\"litespeed-dashboard-unlock\";i:1;s:6:\"button\";i:2;s:14:\"button-primary\";i:3;s:9:\"dashicons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:55:\".litespeed-wrap .button.litespeed-button-cta .dashicons\";a:1:{i:1;a:4:{i:0;s:14:\"litespeed-wrap\";i:1;s:6:\"button\";i:2;s:20:\"litespeed-button-cta\";i:3;s:9:\"dashicons\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:628;a:2:{i:0;a:1:{s:35:\"p.litespeed-dashboard-unlock-footer\";a:2:{i:1;a:1:{i:0;s:33:\"litespeed-dashboard-unlock-footer\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:14:\"margin-top:2em\";}}i:629;s:1:\"}\";i:630;a:2:{i:0;a:1:{s:42:\".litespeed-column-java:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-column-java\";}}}i:1;a:1:{i:0;s:18:\"background:#5cadad\";}}i:631;a:2:{i:0;a:1:{s:44:\".litespeed-text-shipgrey:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-text-shipgrey\";}}}i:1;a:1:{i:0;s:13:\"color:#535342\";}}i:632;a:2:{i:0;a:1:{s:43:\".litespeed-text-dimgray:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-text-dimgray\";}}}i:1;a:1:{i:0;s:10:\"color:#666\";}}i:633;a:2:{i:0;a:1:{s:40:\".litespeed-text-grey:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-text-grey\";}}}i:1;a:1:{i:0;s:10:\"color:#999\";}}i:634;a:2:{i:0;a:1:{s:43:\".litespeed-text-whisper:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-text-whisper\";}}}i:1;a:1:{i:0;s:13:\"color:#e6e6e6\";}}i:635;a:2:{i:0;a:1:{s:42:\".litespeed-text-malibu:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-text-malibu\";}}}i:1;a:1:{i:0;s:13:\"color:#5cbdde\";}}i:636;a:2:{i:0;a:1:{s:48:\".litespeed-text-morningglory:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-text-morningglory\";}}}i:1;a:1:{i:0;s:10:\"color:#9cc\";}}i:637;a:2:{i:0;a:1:{s:40:\".litespeed-text-fern:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-text-fern\";}}}i:1;a:1:{i:0;s:10:\"color:#6c6\";}}i:638;a:2:{i:0;a:1:{s:48:\".litespeed-text-persiangreen:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-text-persiangreen\";}}}i:1;a:1:{i:0;s:10:\"color:#099\";}}i:639;a:2:{i:0;a:1:{s:20:\".litespeed-text-lead\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-text-lead\";}}}i:1;a:1:{i:0;s:14:\"font-size:16px\";}}i:640;a:2:{i:0;a:1:{s:21:\".litespeed-text-small\";a:1:{i:1;a:1:{i:0;s:20:\"litespeed-text-small\";}}}i:1;a:2:{i:0;s:14:\"font-size:12px\";i:1;s:16:\"line-height:14px\";}}i:641;a:2:{i:0;a:1:{s:20:\".litespeed-text-thin\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-text-thin\";}}}i:1;a:1:{i:0;s:15:\"font-weight:100\";}}i:642;a:2:{i:0;a:1:{s:19:\".litespeed-contrast\";a:1:{i:1;a:1:{i:0;s:18:\"litespeed-contrast\";}}}i:1;a:1:{i:0;s:11:\"color:white\";}}i:643;a:2:{i:0;a:1:{s:20:\".litespeed-hr-dotted\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-hr-dotted\";}}}i:1;a:1:{i:0;s:22:\"border:1px dotted #eee\";}}i:644;a:2:{i:0;a:1:{s:13:\".litespeed-hr\";a:1:{i:1;a:1:{i:0;s:12:\"litespeed-hr\";}}}i:1;a:2:{i:0;s:20:\"padding-bottom:1.5em\";i:1;s:32:\"border-bottom:.5px solid #97caca\";}}i:645;a:2:{i:0;a:1:{s:24:\".litespeed-hr-with-space\";a:1:{i:1;a:1:{i:0;s:23:\"litespeed-hr-with-space\";}}}i:1;a:3:{i:0;s:25:\"border-top:1px solid #eee\";i:1;s:12:\"margin:2em 0\";i:2;s:18:\"border-bottom:none\";}}i:646;a:2:{i:0;a:1:{s:31:\".litespeed-icon-vertical-middle\";a:1:{i:1;a:1:{i:0;s:30:\"litespeed-icon-vertical-middle\";}}}i:1;a:3:{i:0;s:21:\"vertical-align:middle\";i:1;s:20:\"display:inline-block\";i:2;s:24:\"margin:0px 10px 0px 10px\";}}i:647;a:2:{i:0;a:1:{s:60:\".litespeed-column-java .litespeed-danger:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:16:\"litespeed-danger\";}}}i:1;a:1:{i:0;s:13:\"color:#c1c53a\";}}i:648;a:2:{i:0;a:1:{s:38:\".litespeed-column-java .litespeed-desc\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:14:\"litespeed-desc\";}}}i:1;a:1:{i:0;s:13:\"color:#bfbfbf\";}}i:649;a:2:{i:0;a:1:{s:27:\".litespeed-column-java code\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-column-java\";}i:0;a:1:{i:0;s:4:\"code\";}}}i:1;a:2:{i:0;s:13:\"color:#c2f5bf\";i:1;s:24:\"background-color:#238888\";}}i:650;a:2:{i:0;a:1:{s:39:\".litespeed-column-java .litespeed-title\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:15:\"litespeed-title\";}}}i:1;a:1:{i:0;s:11:\"color:white\";}}i:651;a:2:{i:0;a:1:{s:41:\".litespeed-width-7-10 .litespeed-progress\";a:1:{i:1;a:2:{i:0;s:20:\"litespeed-width-7-10\";i:1;s:18:\"litespeed-progress\";}}}i:1;a:1:{i:0;s:10:\"margin:1em\";}}i:652;a:2:{i:0;a:1:{s:24:\".litespeed-refresh:after\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-refresh\";}}}i:1;a:4:{i:0;s:13:\"content:\"⟳\"\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";i:3;s:13:\"color:#40ad3a\";}}i:653;a:2:{i:0;a:1:{s:47:\".litespeed-column-java .litespeed-refresh:after\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:17:\"litespeed-refresh\";}}}i:1;a:1:{i:0;s:13:\"color:#23ec17\";}}i:654;a:2:{i:0;a:3:{s:30:\".litespeed-refresh:hover:after\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-refresh\";}}s:30:\".litespeed-refresh:focus:after\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-refresh\";}}s:37:\".litespeed-refresh:focus:active:after\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-refresh\";}}}i:1;a:1:{i:0;s:13:\"color:#7ffbfb\";}}i:655;a:2:{i:0;a:1:{s:38:\".litespeed-width-3-10 .litespeed-title\";a:1:{i:1;a:2:{i:0;s:20:\"litespeed-width-3-10\";i:1;s:15:\"litespeed-title\";}}}i:1;a:1:{i:0;s:13:\"margin:18px 0\";}}i:656;a:2:{i:0;a:1:{s:18:\".litespeed-silence\";a:1:{i:1;a:1:{i:0;s:17:\"litespeed-silence\";}}}i:1;a:1:{i:0;s:13:\"color:#b1b1b1\";}}i:657;a:2:{i:0;a:1:{s:46:\".litespeed-column-java .litespeed-congratulate\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:22:\"litespeed-congratulate\";}}}i:1;a:2:{i:0;s:13:\"color:#c2f5bf\";i:1;s:14:\"font-size:20px\";}}i:658;a:2:{i:0;a:1:{s:45:\".litespeed-light-code .litespeed-silence code\";a:2:{i:1;a:2:{i:0;s:20:\"litespeed-light-code\";i:1;s:17:\"litespeed-silence\";}i:0;a:1:{i:0;s:4:\"code\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f0f5fb\";}}i:659;a:2:{i:0;a:1:{s:44:\".litespeed-column-java .litespeed-btn-danger\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:2:{i:0;s:13:\"color:#f194a8\";i:1;s:20:\"border-color:#f194a8\";}}i:660;a:2:{i:0;a:1:{s:50:\".litespeed-column-java .litespeed-btn-danger:hover\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:1:{i:0;s:18:\"background:#f194a8\";}}i:661;a:2:{i:0;a:1:{s:64:\".litespeed-column-java svg.litespeed-pie circle.litespeed-pie_bg\";a:2:{i:1;a:3:{i:0;s:21:\"litespeed-column-java\";i:1;s:13:\"litespeed-pie\";i:2;s:16:\"litespeed-pie_bg\";}i:0;a:2:{i:0;s:3:\"svg\";i:1;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#e8efe7\";}}i:662;a:2:{i:0;a:1:{s:68:\".litespeed-column-java svg.litespeed-pie circle.litespeed-pie_circle\";a:2:{i:1;a:3:{i:0;s:21:\"litespeed-column-java\";i:1;s:13:\"litespeed-pie\";i:2;s:20:\"litespeed-pie_circle\";}i:0;a:2:{i:0;s:3:\"svg\";i:1;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#97caca\";}}i:663;a:2:{i:0;a:1:{s:51:\".litespeed-column-java svg .litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:3:\"svg\";i:1;s:4:\"text\";}}}i:1;a:1:{i:0;s:12:\"fill:#f5ffeb\";}}i:664;a:2:{i:0;a:1:{s:67:\".litespeed-column-java svg g.litespeed-pie_info .litespeed-pie-done\";a:2:{i:1;a:3:{i:0;s:21:\"litespeed-column-java\";i:1;s:18:\"litespeed-pie_info\";i:2;s:18:\"litespeed-pie-done\";}i:0;a:2:{i:0;s:3:\"svg\";i:1;s:1:\"g\";}}}i:1;a:1:{i:0;s:12:\"fill:#a5ffa0\";}}i:665;a:2:{i:0;a:1:{s:24:\".litespeed-column-java a\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-column-java\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#eaf8ff\";}}i:666;a:2:{i:0;a:1:{s:30:\".litespeed-column-java a:hover\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-column-java\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:667;a:2:{i:0;a:1:{s:28:\".litespeed-progress-bar-blue\";a:1:{i:1;a:1:{i:0;s:27:\"litespeed-progress-bar-blue\";}}}i:1;a:1:{i:0;s:24:\"background-color:#33adff\";}}i:668;a:2:{i:0;a:1:{s:25:\".litespeed-status-current\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-status-current\";}}}i:1;a:2:{i:0;s:15:\"font-size:3.5em\";i:1;s:27:\"margin:1.25em 0em .75em 0em\";}}i:669;a:2:{i:0;a:1:{s:38:\".litespeed-column-java .litespeed-desc\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:14:\"litespeed-desc\";}}}i:1;a:1:{i:0;s:13:\"color:#cae4e4\";}}i:670;a:2:{i:0;a:1:{s:61:\".litespeed-column-java .litespeed-warning:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:17:\"litespeed-warning\";}}}i:1;a:1:{i:0;s:13:\"color:#ffd597\";}}i:671;a:2:{i:0;a:1:{s:45:\".litespeed-column-java .litespeed-btn-success\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:21:\"litespeed-btn-success\";}}}i:1;a:3:{i:0;s:13:\"color:#ddf1e4\";i:1;s:24:\"border:1px solid #33ad5c\";i:2;s:18:\"background:#33ad5c\";}}i:672;a:2:{i:0;a:1:{s:51:\".litespeed-column-java .litespeed-btn-success:hover\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:21:\"litespeed-btn-success\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:24:\"border:1px solid #7dca97\";i:2;s:15:\"background:#093\";}}i:673;a:2:{i:0;a:1:{s:45:\".litespeed-column-java .litespeed-btn-warning\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:21:\"litespeed-btn-warning\";}}}i:1;a:3:{i:0;s:13:\"color:#fff1dd\";i:1;s:21:\"border:1px solid #f93\";i:2;s:21:\"background-color:#f93\";}}i:674;a:2:{i:0;a:1:{s:51:\".litespeed-column-java .litespeed-btn-warning:hover\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:21:\"litespeed-btn-warning\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:20:\"border-color:#ffca7d\";i:2;s:15:\"background:#f90\";}}i:675;a:2:{i:0;a:1:{s:44:\".litespeed-column-java .litespeed-btn-danger\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:1:{i:0;s:18:\"background:#ff5c5c\";}}i:676;a:2:{i:0;a:1:{s:64:\".litespeed-column-java .litespeed-btn-danger:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:2:{i:0;s:13:\"color:#ffeadd\";i:1;s:21:\"border:1px solid #f60\";}}i:677;a:2:{i:0;a:1:{s:50:\".litespeed-column-java .litespeed-btn-danger:hover\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:2:{i:0;s:10:\"color:#fff\";i:1;s:15:\"background:#f00\";}}i:678;a:2:{i:0;a:1:{s:70:\".litespeed-column-java .litespeed-btn-danger:hover:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:20:\"litespeed-btn-danger\";}}}i:1;a:1:{i:0;s:24:\"border:1px solid #ff9797\";}}i:679;a:2:{i:0;a:2:{s:51:\".litespeed-column-java .litepseed-dash-icon-success\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:27:\"litepseed-dash-icon-success\";}}s:28:\".litepseed-dash-icon-success\";a:1:{i:1;a:1:{i:0;s:27:\"litepseed-dash-icon-success\";}}}i:1;a:3:{i:0;s:13:\"color:#5cdede\";i:1;s:13:\"font-size:2em\";i:2;s:17:\"margin-top:-.25em\";}}i:680;a:2:{i:0;a:2:{s:57:\".litespeed-column-java .litepseed-dash-icon-success:hover\";a:1:{i:1;a:2:{i:0;s:21:\"litespeed-column-java\";i:1;s:27:\"litepseed-dash-icon-success\";}}s:34:\".litepseed-dash-icon-success:hover\";a:1:{i:1;a:1:{i:0;s:27:\"litepseed-dash-icon-success\";}}}i:1;a:1:{i:0;s:13:\"color:#7de5e5\";}}i:681;a:2:{i:0;a:1:{s:26:\".litespeed-dashicons-large\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-dashicons-large\";}}}i:1;a:1:{i:0;s:13:\"font-size:2em\";}}i:682;a:2:{i:0;a:1:{s:24:\".litespeed-column-java p\";a:2:{i:1;a:1:{i:0;s:21:\"litespeed-column-java\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:683;a:2:{i:0;a:1:{s:54:\".litespeed-body tbody > tr > th.litespeed-padding-left\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:22:\"litespeed-padding-left\";}i:0;a:3:{i:0;s:5:\"tbody\";i:1;s:2:\"tr\";i:2;s:2:\"th\";}}}i:1;a:1:{i:0;s:16:\"padding-left:3em\";}}i:684;s:37:\"@media screen and (max-width: 680px){\";i:685;a:2:{i:0;a:1:{s:54:\".litespeed-body tbody > tr > th.litespeed-padding-left\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:22:\"litespeed-padding-left\";}i:0;a:3:{i:0;s:5:\"tbody\";i:1;s:2:\"tr\";i:2;s:2:\"th\";}}}i:1;a:1:{i:0;s:17:\"padding-left:10px\";}}i:686;a:2:{i:0;a:1:{s:61:\".litespeed-body tbody > tr > th.litespeed-padding-left:before\";a:2:{i:1;a:2:{i:0;s:14:\"litespeed-body\";i:1;s:22:\"litespeed-padding-left\";}i:0;a:3:{i:0;s:5:\"tbody\";i:1;s:2:\"tr\";i:2;s:2:\"th\";}}}i:1;a:3:{i:0;s:16:\"content:\"——\"\";i:1;s:10:\"color:#ccc\";i:2;s:16:\"margin-right:5px\";}}i:687;s:1:\"}\";i:688;a:2:{i:0;a:1:{s:20:\".litespeed-txt-small\";a:1:{i:1;a:1:{i:0;s:19:\"litespeed-txt-small\";}}}i:1;a:1:{i:0;s:14:\"font-size:12px\";}}i:689;a:2:{i:0;a:1:{s:47:\".litespeed-txt-disabled .litespeed-text-dimgray\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-txt-disabled\";i:1;s:22:\"litespeed-text-dimgray\";}}}i:1;a:1:{i:0;s:10:\"color:#aaa\";}}i:690;a:2:{i:0;a:1:{s:27:\".litespeed-txt-disabled svg\";a:2:{i:1;a:1:{i:0;s:22:\"litespeed-txt-disabled\";}i:0;a:1:{i:0;s:3:\"svg\";}}}i:1;a:1:{i:0;s:9:\"fill:#aaa\";}}i:691;a:2:{i:0;a:1:{s:51:\".litespeed-txt-disabled circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-txt-disabled\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:1:{i:0;s:6:\"circle\";}}}i:1;a:1:{i:0;s:11:\"stroke:#ccc\";}}i:692;a:2:{i:0;a:1:{s:49:\".litespeed-txt-disabled g.litespeed-pie_info text\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-txt-disabled\";i:1;s:18:\"litespeed-pie_info\";}i:0;a:2:{i:0;s:1:\"g\";i:1;s:4:\"text\";}}}i:1;a:1:{i:0;s:10:\"color:#ccc\";}}i:693;a:2:{i:0;a:1:{s:32:\"a.litespeed-media-href svg:hover\";a:2:{i:1;a:1:{i:0;s:20:\"litespeed-media-href\";}i:0;a:2:{i:0;s:1:\"a\";i:1;s:3:\"svg\";}}}i:1;a:6:{i:0;s:17:\"border-radius:50%\";i:1;s:18:\"background:#f1fcff\";i:2;s:12:\"fill:#5ccad7\";i:3;s:30:\"box-shadow:0 0 5px 1px #7dd5df\";i:4;s:27:\"transition:all .2s ease-out\";i:5;s:21:\"transform:scale(1.05)\";}}i:694;a:2:{i:0;a:1:{s:37:\".litespeed-media-p a .dashicons-trash\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-media-p\";i:1;s:15:\"dashicons-trash\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:5:{i:0;s:16:\"font-size:2.25em\";i:1;s:21:\"vertical-align:middle\";i:2;s:14:\"display:inline\";i:3;s:17:\"border-radius:50%\";i:4;s:17:\"line-height:1.5em\";}}i:695;a:2:{i:0;a:1:{s:43:\".litespeed-media-p a .dashicons-trash:hover\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-media-p\";i:1;s:15:\"dashicons-trash\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:27:\"transition:all .2s ease-out\";i:1;s:18:\"background:#fff5e6\";i:2;s:31:\"box-shadow:0 0 10px 1px #ff8c00\";}}i:696;a:2:{i:0;a:1:{s:65:\".litespeed-media-p a .dashicons-trash:hover:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-media-p\";i:1;s:15:\"dashicons-trash\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#ffa500\";}}i:697;a:2:{i:0;a:1:{s:52:\".litespeed-media-p div > svg circle.litespeed-pie_bg\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-media-p\";i:1;s:16:\"litespeed-pie_bg\";}i:0;a:3:{i:0;s:3:\"div\";i:1;s:3:\"svg\";i:2;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#ecf2f9\";}}i:698;a:2:{i:0;a:1:{s:56:\".litespeed-media-p div > svg circle.litespeed-pie_circle\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-media-p\";i:1;s:20:\"litespeed-pie_circle\";}i:0;a:3:{i:0;s:3:\"div\";i:1;s:3:\"svg\";i:2;s:6:\"circle\";}}}i:1;a:1:{i:0;s:14:\"stroke:#9fbfdf\";}}i:699;a:2:{i:0;a:1:{s:28:\".litespeed-media-p div > svg\";a:2:{i:1;a:1:{i:0;s:17:\"litespeed-media-p\";}i:0;a:2:{i:0;s:3:\"div\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:12:\"fill:#538cc6\";i:1;s:31:\"background:rgba(236,242,249,.1)\";i:2;s:17:\"border-radius:50%\";}}i:700;a:2:{i:0;a:1:{s:46:\".litespeed-banner-description-padding-right-15\";a:1:{i:1;a:1:{i:0;s:45:\"litespeed-banner-description-padding-right-15\";}}}i:1;a:1:{i:0;s:18:\"padding-right:15px\";}}i:701;a:2:{i:0;a:1:{s:29:\".litespeed-banner-description\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-banner-description\";}}}i:1;a:2:{i:0;s:19:\"display:inline-flex\";i:1;s:14:\"flex-wrap:wrap\";}}i:702;a:2:{i:0;a:1:{s:37:\".litespeed-banner-description-content\";a:1:{i:1;a:1:{i:0;s:36:\"litespeed-banner-description-content\";}}}i:1;a:2:{i:0;s:10:\"margin:0px\";i:1;s:18:\"line-height:1.25em\";}}i:703;a:2:{i:0;a:1:{s:29:\".litespeed-banner-button-link\";a:1:{i:1;a:1:{i:0;s:28:\"litespeed-banner-button-link\";}}}i:1;a:4:{i:0;s:18:\"white-space:nowrap\";i:1;s:10:\"margin:0px\";i:2;s:17:\"line-height:1.5em\";i:3;s:18:\"padding-bottom:5px\";}}i:704;a:2:{i:0;a:1:{s:25:\".litespeed-notice-dismiss\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-notice-dismiss\";}}}i:1;a:15:{i:0;s:17:\"position:absolute\";i:1;s:10:\"right:25px\";i:2;s:11:\"border:none\";i:3;s:8:\"margin:0\";i:4;s:12:\"padding:10px\";i:5;s:15:\"background:none\";i:6;s:14:\"cursor:pointer\";i:7;s:10:\"color:#888\";i:8;s:13:\"display:block\";i:9;s:11:\"height:20px\";i:10;s:17:\"text-align:center\";i:11;s:34:\"-webkit-font-smoothing:antialiased\";i:12;s:33:\"-moz-osx-font-smoothing:grayscale\";i:13;s:15:\"font-weight:600\";i:14;s:20:\"text-decoration:none\";}}i:705;a:2:{i:0;a:3:{s:31:\".litespeed-notice-dismiss:hover\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-notice-dismiss\";}}s:32:\".litespeed-notice-dismiss:active\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-notice-dismiss\";}}s:31:\".litespeed-notice-dismiss:focus\";a:1:{i:1;a:1:{i:0;s:24:\"litespeed-notice-dismiss\";}}}i:1;a:1:{i:0;s:13:\"color:#cc2929\";}}i:706;a:2:{i:0;a:1:{s:14:\".litespeed-dot\";a:1:{i:1;a:1:{i:0;s:13:\"litespeed-dot\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"border-radius:50%\";i:2;s:10:\"width:20px\";i:3;s:11:\"height:20px\";i:4;s:11:\"color:white\";i:5;s:17:\"text-align:center\";}}i:707;a:2:{i:0;a:1:{s:16:\".litespeed-badge\";a:1:{i:1;a:1:{i:0;s:15:\"litespeed-badge\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"border-radius:20%\";i:2;s:14:\"min-width:50px\";i:3;s:11:\"height:20px\";i:4;s:11:\"color:white\";i:5;s:17:\"text-align:center\";}}i:708;a:2:{i:0;a:1:{s:26:\".litespeed-comparison-card\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}}}i:1;a:1:{i:0;s:21:\"box-sizing:border-box\";}}i:709;a:2:{i:0;a:1:{s:80:\".litespeed-comparison-card-rec .litespeed-card-content > div.litespeed-card-body\";a:2:{i:1;a:3:{i:0;s:29:\"litespeed-comparison-card-rec\";i:1;s:22:\"litespeed-card-content\";i:2;s:19:\"litespeed-card-body\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:14:\"font-size:14px\";}}i:710;a:2:{i:0;a:1:{s:53:\".litespeed-comparison-card-rec .litespeed-card-action\";a:1:{i:1;a:2:{i:0;s:29:\"litespeed-comparison-card-rec\";i:1;s:21:\"litespeed-card-action\";}}}i:1;a:1:{i:0;s:20:\"margin-bottom:.25rem\";}}i:711;a:2:{i:0;a:1:{s:33:\".litespeed-comparison-card-rec h3\";a:2:{i:1;a:1:{i:0;s:29:\"litespeed-comparison-card-rec\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:712;a:2:{i:0;a:2:{s:29:\".litespeed-card-content > div\";a:2:{i:1;a:1:{i:0;s:22:\"litespeed-card-content\";}i:0;a:1:{i:0;s:3:\"div\";}}s:22:\".litespeed-card-action\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-card-action\";}}}i:1;a:1:{i:0;s:22:\"padding:.85rem 1.25rem\";}}i:713;a:2:{i:0;a:1:{s:22:\".litespeed-card-header\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-card-header\";}}}i:1;a:2:{i:0;s:28:\"border-bottom:1px solid #eee\";i:1;s:18:\"background:#f9fafc\";}}i:714;a:2:{i:0;a:1:{s:49:\".litespeed-card-content > div.litespeed-card-body\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:19:\"litespeed-card-body\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:5:{i:0;s:18:\"align-self:stretch\";i:1;s:24:\"justify-content:flex-end\";i:2;s:14:\"font-size:15px\";i:3;s:20:\"padding-bottom:.5rem\";i:4;s:16:\"padding-top:1rem\";}}i:715;a:2:{i:0;a:1:{s:51:\".litespeed-card-content > div.litespeed-card-footer\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:21:\"litespeed-card-footer\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:4:{i:0;s:18:\"align-self:stretch\";i:1;s:24:\"justify-content:flex-end\";i:2;s:16:\"padding-bottom:0\";i:3;s:18:\"padding-top:.25rem\";}}i:716;a:2:{i:0;a:1:{s:22:\".litespeed-card-action\";a:1:{i:1;a:1:{i:0;s:21:\"litespeed-card-action\";}}}i:1;a:1:{i:0;s:24:\"justify-content:flex-end\";}}i:717;a:2:{i:0;a:1:{s:29:\".litespeed-comparison-card ul\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:4:{i:0;s:17:\"padding-left:20px\";i:1;s:15:\"list-style:none\";i:2;s:27:\"list-style-position:outside\";i:3;s:8:\"margin:0\";}}i:718;a:2:{i:0;a:1:{s:29:\".litespeed-comparison-card li\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:18:\"margin-bottom:.5em\";i:1;s:15:\"line-height:1.4\";}}i:719;a:2:{i:0;a:1:{s:40:\".litespeed-comparison-card li:last-child\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:720;a:2:{i:0;a:1:{s:39:\".litespeed-comparison-card ul li:before\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"li\";}}}i:1;a:4:{i:0;s:13:\"content:\"✓\"\";i:1;s:16:\"margin-left:-1em\";i:2;s:18:\"margin-right:.35em\";i:3;s:13:\"color:#329c74\";}}i:721;s:38:\"@media screen and (max-width: 1279px){\";i:722;a:2:{i:0;a:1:{s:26:\".litespeed-comparison-card\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}}}i:1;a:1:{i:0;s:17:\"margin:0 0 -1px 0\";}}i:723;s:1:\"}\";i:724;s:61:\"@media screen and (min-width: 640px) and (max-width: 1279px){\";i:725;a:2:{i:0;a:1:{s:27:\".litespeed-comparison-cards\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-comparison-cards\";}}}i:1;a:1:{i:0;s:15:\"max-width:740px\";}}i:726;a:2:{i:0;a:1:{s:23:\".litespeed-card-content\";a:1:{i:1;a:1:{i:0;s:22:\"litespeed-card-content\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:14:\"flex-wrap:wrap\";}}i:727;a:2:{i:0;a:1:{s:46:\".litespeed-card-content .litespeed-card-header\";a:1:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:21:\"litespeed-card-header\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:728;a:2:{i:0;a:1:{s:49:\".litespeed-card-content > div.litespeed-card-body\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:19:\"litespeed-card-body\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:3:{i:0;s:18:\"align-self:initial\";i:1;s:9:\"width:50%\";i:2;s:21:\"box-sizing:border-box\";}}i:729;a:2:{i:0;a:1:{s:51:\".litespeed-card-content > div.litespeed-card-footer\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:21:\"litespeed-card-footer\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:3:{i:0;s:9:\"width:50%\";i:1;s:18:\"align-self:initial\";i:2;s:21:\"box-sizing:border-box\";}}i:730;a:2:{i:0;a:1:{s:54:\".litespeed-card-content > div.litespeed-card-footer h4\";a:2:{i:1;a:2:{i:0;s:22:\"litespeed-card-content\";i:1;s:21:\"litespeed-card-footer\";}i:0;a:2:{i:0;s:3:\"div\";i:1;s:2:\"h4\";}}}i:1;a:1:{i:0;s:15:\"margin-top:1rem\";}}i:731;s:1:\"}\";i:732;s:38:\"@media screen and (min-width: 1280px){\";i:733;a:2:{i:0;a:1:{s:27:\".litespeed-comparison-cards\";a:1:{i:1;a:1:{i:0;s:26:\"litespeed-comparison-cards\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:20:\"margin:3rem 0 2rem 0\";i:2;s:16:\"max-width:1720px\";}}i:734;a:2:{i:0;a:1:{s:26:\".litespeed-comparison-card\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}}}i:1;a:6:{i:0;s:9:\"width:19%\";i:1;s:11:\"min-width:0\";i:2;s:12:\"display:flex\";i:3;s:21:\"flex-direction:column\";i:4;s:17:\"margin-right:-1px\";i:5;s:29:\"justify-content:space-between\";}}i:735;a:2:{i:0;a:1:{s:38:\".litespeed-comparison-card:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}}}i:1;a:3:{i:0;s:26:\"border-top-left-radius:5px\";i:1;s:29:\"border-bottom-left-radius:5px\";i:2;s:15:\"overflow:hidden\";}}i:736;a:2:{i:0;a:1:{s:37:\".litespeed-comparison-card:last-child\";a:1:{i:1;a:1:{i:0;s:25:\"litespeed-comparison-card\";}}}i:1;a:3:{i:0;s:27:\"border-top-right-radius:5px\";i:1;s:30:\"border-bottom-right-radius:5px\";i:2;s:15:\"overflow:hidden\";}}i:737;a:2:{i:0;a:1:{s:30:\".litespeed-comparison-card-rec\";a:1:{i:1;a:1:{i:0;s:29:\"litespeed-comparison-card-rec\";}}}i:1;a:7:{i:0;s:9:\"width:23%\";i:1;s:16:\"padding-top:1rem\";i:2;s:21:\"padding-bottom:.75rem\";i:3;s:16:\"margin-top:-1rem\";i:4;s:20:\"margin-bottom:.25rem\";i:5;s:17:\"border-radius:5px\";i:6;s:15:\"overflow:hidden\";}}i:738;a:2:{i:0;a:1:{s:53:\".litespeed-comparison-card-rec .litespeed-card-header\";a:1:{i:1;a:2:{i:0;s:29:\"litespeed-comparison-card-rec\";i:1;s:21:\"litespeed-card-header\";}}}i:1;a:3:{i:0;s:16:\"margin-top:-1rem\";i:1;s:19:\"padding-top:1.75rem\";i:2;s:21:\"padding-bottom:.95rem\";}}i:739;s:1:\"}\";i:740;a:2:{i:0;a:1:{s:15:\".litespeed-wrap\";a:1:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:3:{i:0;s:34:\"--balloon-color:rgba(16,16,16,.95)\";i:1;s:24:\"--balloon-font-size:12px\";i:2;s:18:\"--balloon-move:4px\";}}i:741;a:2:{i:0;a:1:{s:52:\".litespeed-wrap button[aria-label][data-balloon-pos]\";a:3:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:0;a:1:{i:0;s:6:\"button\";}}}i:1;a:1:{i:0;s:16:\"overflow:visible\";}}i:742;a:2:{i:0;a:1:{s:46:\".litespeed-wrap [aria-label][data-balloon-pos]\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:17:\"position:relative\";i:1;s:14:\"cursor:pointer\";}}i:743;a:2:{i:0;a:1:{s:52:\".litespeed-wrap [aria-label][data-balloon-pos]:after\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:18:{i:0;s:9:\"opacity:0\";i:1;s:19:\"pointer-events:none\";i:2;s:28:\"transition:all .2s ease .05s\";i:3;s:13:\"text-indent:0\";i:4;s:126:\"font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu,Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif\";i:5;s:18:\"font-weight:normal\";i:6;s:17:\"font-style:normal\";i:7;s:16:\"text-shadow:none\";i:8;s:34:\"font-size:var(--balloon-font-size)\";i:9;s:31:\"background:var(--balloon-color)\";i:10;s:17:\"border-radius:2px\";i:11;s:10:\"color:#fff\";i:12;s:24:\"content:attr(aria-label)\";i:13;s:16:\"padding:.5em 1em\";i:14;s:17:\"position:absolute\";i:15;s:18:\"white-space:nowrap\";i:16;s:10:\"z-index:10\";i:17;s:15:\"line-height:1.4\";}}i:744;a:2:{i:0;a:1:{s:53:\".litespeed-wrap [aria-label][data-balloon-pos]:before\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:10:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:37:\"border-top-color:var(--balloon-color)\";i:4;s:9:\"opacity:0\";i:5;s:19:\"pointer-events:none\";i:6;s:28:\"transition:all .2s ease .05s\";i:7;s:10:\"content:\"\"\";i:8;s:17:\"position:absolute\";i:9;s:10:\"z-index:10\";}}i:745;a:2:{i:0;a:6:{s:59:\".litespeed-wrap [aria-label][data-balloon-pos]:hover:before\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:58:\".litespeed-wrap [aria-label][data-balloon-pos]:hover:after\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:75:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-visible]:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:74:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-visible]:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:87:\".litespeed-wrap [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:86:\".litespeed-wrap [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:9:\"opacity:1\";i:1;s:19:\"pointer-events:none\";}}i:746;a:2:{i:0;a:1:{s:65:\".litespeed-wrap [aria-label][data-balloon-pos].font-awesome:after\";a:2:{i:3;a:2:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";}i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:12:\"font-awesome\";}}}i:1;a:1:{i:0;s:138:\"font-family:FontAwesome,-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu,Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif\";}}i:747;a:2:{i:0;a:1:{s:72:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-break]:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:18:\"data-balloon-break\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:15:\"white-space:pre\";}}i:748;a:2:{i:0;a:1:{s:93:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:18:\"data-balloon-break\";i:3;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:20:\"white-space:pre-line\";i:1;s:21:\"word-break:break-word\";}}i:749;a:2:{i:0;a:2:{s:73:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-blunt]:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:18:\"data-balloon-blunt\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:72:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-blunt]:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:18:\"data-balloon-blunt\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:15:\"transition:none\";}}i:750;a:2:{i:0;a:1:{s:75:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:5:{i:0;s:11:\"bottom:100%\";i:1;s:8:\"left:50%\";i:2;s:18:\"margin-bottom:10px\";i:3;s:45:\"transform:translate(-50%,var(--balloon-move))\";i:4;s:20:\"transform-origin:top\";}}i:751;a:2:{i:0;a:1:{s:76:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:11:\"bottom:100%\";i:1;s:8:\"left:50%\";i:2;s:45:\"transform:translate(-50%,var(--balloon-move))\";i:3;s:20:\"transform-origin:top\";}}i:752;a:2:{i:0;a:2:{s:81:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:97:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(-50%,0)\";}}i:753;a:2:{i:0;a:2:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:98:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(-50%,0)\";}}i:754;a:2:{i:0;a:1:{s:80:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:5:{i:0;s:11:\"bottom:100%\";i:1;s:6:\"left:0\";i:2;s:18:\"margin-bottom:10px\";i:3;s:42:\"transform:translate(0,var(--balloon-move))\";i:4;s:20:\"transform-origin:top\";}}i:755;a:2:{i:0;a:1:{s:81:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:11:\"bottom:100%\";i:1;s:8:\"left:5px\";i:2;s:42:\"transform:translate(0,var(--balloon-move))\";i:3;s:20:\"transform-origin:top\";}}i:756;a:2:{i:0;a:2:{s:86:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:102:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:757;a:2:{i:0;a:2:{s:87:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:103:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-left\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:758;a:2:{i:0;a:1:{s:81:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:5:{i:0;s:11:\"bottom:100%\";i:1;s:7:\"right:0\";i:2;s:18:\"margin-bottom:10px\";i:3;s:42:\"transform:translate(0,var(--balloon-move))\";i:4;s:20:\"transform-origin:top\";}}i:759;a:2:{i:0;a:1:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:11:\"bottom:100%\";i:1;s:9:\"right:5px\";i:2;s:42:\"transform:translate(0,var(--balloon-move))\";i:3;s:20:\"transform-origin:top\";}}i:760;a:2:{i:0;a:2:{s:87:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:103:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:761;a:2:{i:0;a:2:{s:88:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:104:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'up-right\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:762;a:2:{i:0;a:1:{s:77:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:8:\"left:50%\";i:1;s:15:\"margin-top:10px\";i:2;s:8:\"top:100%\";i:3;s:56:\"transform:translate(-50%,calc(var(--balloon-move) * -1))\";}}i:763;a:2:{i:0;a:1:{s:78:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:7:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:40:\"border-bottom-color:var(--balloon-color)\";i:4;s:8:\"left:50%\";i:5;s:8:\"top:100%\";i:6;s:56:\"transform:translate(-50%,calc(var(--balloon-move) * -1))\";}}i:764;a:2:{i:0;a:2:{s:83:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:99:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(-50%,0)\";}}i:765;a:2:{i:0;a:2:{s:84:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:100:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(-50%,0)\";}}i:766;a:2:{i:0;a:1:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:6:\"left:0\";i:1;s:15:\"margin-top:10px\";i:2;s:8:\"top:100%\";i:3;s:53:\"transform:translate(0,calc(var(--balloon-move) * -1))\";}}i:767;a:2:{i:0;a:1:{s:83:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:7:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:40:\"border-bottom-color:var(--balloon-color)\";i:4;s:8:\"left:5px\";i:5;s:8:\"top:100%\";i:6;s:53:\"transform:translate(0,calc(var(--balloon-move) * -1))\";}}i:768;a:2:{i:0;a:2:{s:88:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:104:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:769;a:2:{i:0;a:2:{s:89:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:105:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-left\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:770;a:2:{i:0;a:1:{s:83:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:7:\"right:0\";i:1;s:15:\"margin-top:10px\";i:2;s:8:\"top:100%\";i:3;s:53:\"transform:translate(0,calc(var(--balloon-move) * -1))\";}}i:771;a:2:{i:0;a:1:{s:84:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:7:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:40:\"border-bottom-color:var(--balloon-color)\";i:4;s:9:\"right:5px\";i:5;s:8:\"top:100%\";i:6;s:53:\"transform:translate(0,calc(var(--balloon-move) * -1))\";}}i:772;a:2:{i:0;a:2:{s:89:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:105:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:773;a:2:{i:0;a:2:{s:90:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:106:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'down-right\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:774;a:2:{i:0;a:1:{s:77:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:17:\"margin-right:10px\";i:1;s:10:\"right:100%\";i:2;s:7:\"top:50%\";i:3;s:45:\"transform:translate(var(--balloon-move),-50%)\";}}i:775;a:2:{i:0;a:1:{s:78:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:7:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:38:\"border-left-color:var(--balloon-color)\";i:4;s:10:\"right:100%\";i:5;s:7:\"top:50%\";i:6;s:45:\"transform:translate(var(--balloon-move),-50%)\";}}i:776;a:2:{i:0;a:2:{s:83:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:99:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(0,-50%)\";}}i:777;a:2:{i:0;a:2:{s:84:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:100:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'left\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(0,-50%)\";}}i:778;a:2:{i:0;a:1:{s:78:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:4:{i:0;s:9:\"left:100%\";i:1;s:16:\"margin-left:10px\";i:2;s:7:\"top:50%\";i:3;s:56:\"transform:translate(calc(var(--balloon-move) * -1),-50%)\";}}i:779;a:2:{i:0;a:1:{s:79:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\']:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:7:{i:0;s:7:\"width:0\";i:1;s:8:\"height:0\";i:2;s:28:\"border:5px solid transparent\";i:3;s:39:\"border-right-color:var(--balloon-color)\";i:4;s:9:\"left:100%\";i:5;s:7:\"top:50%\";i:6;s:56:\"transform:translate(calc(var(--balloon-move) * -1),-50%)\";}}i:780;a:2:{i:0;a:2:{s:84:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:100:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(0,-50%)\";}}i:781;a:2:{i:0;a:2:{s:85:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\']:hover:before\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}s:101:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-pos=\'right\'][data-balloon-visible]:before\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:1:{i:0;s:27:\"transform:translate(0,-50%)\";}}i:782;a:2:{i:0;a:1:{s:81:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'small\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:10:\"width:80px\";}}i:783;a:2:{i:0;a:1:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'medium\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:11:\"width:150px\";}}i:784;a:2:{i:0;a:1:{s:81:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'large\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:11:\"width:260px\";}}i:785;a:2:{i:0;a:1:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'xlarge\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:11:\"width:380px\";}}i:786;s:37:\"@media screen and (max-width: 768px){\";i:787;a:2:{i:0;a:1:{s:82:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'xlarge\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:10:\"width:90vw\";}}i:788;s:1:\"}\";i:789;a:2:{i:0;a:1:{s:79:\".litespeed-wrap [aria-label][data-balloon-pos][data-balloon-length=\'fit\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:19:\"data-balloon-length\";}i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}}}i:1;a:2:{i:0;s:18:\"white-space:normal\";i:1;s:10:\"width:100%\";}}i:790;s:37:\"@media screen and (max-width: 680px){\";i:791;a:2:{i:0;a:1:{s:42:\".litespeed-wrap .litespeed-body .field-col\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:14:\"litespeed-body\";i:2;s:9:\"field-col\";}}}i:1;a:1:{i:0;s:13:\"margin-left:0\";}}i:792;a:2:{i:0;a:1:{s:48:\".litespeed-width-auto.litespeed-table-compact td\";a:2:{i:1;a:2:{i:0;s:20:\"litespeed-width-auto\";i:1;s:23:\"litespeed-table-compact\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:2:{i:0;s:14:\"font-size:12px\";i:1;s:21:\"word-break:break-word\";}}i:793;a:2:{i:0;a:1:{s:74:\".litespeed-body .litespeed-table td .litespeed-right:not(#_#_#_#_#_#_#_#_)\";a:2:{i:1;a:3:{i:0;s:14:\"litespeed-body\";i:1;s:15:\"litespeed-table\";i:2;s:15:\"litespeed-right\";}i:0;a:1:{i:0;s:2:\"td\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:794;a:2:{i:0;a:2:{s:39:\".litespeed-title a.litespeed-learn-more\";a:2:{i:1;a:2:{i:0;s:15:\"litespeed-title\";i:1;s:20:\"litespeed-learn-more\";}i:0;a:1:{i:0;s:1:\"a\";}}s:45:\".litespeed-title-short a.litespeed-learn-more\";a:2:{i:1;a:2:{i:0;s:21:\"litespeed-title-short\";i:1;s:20:\"litespeed-learn-more\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:13:\"display:block\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-top:5px\";}}i:795;s:1:\"}\";i:796;a:2:{i:0;a:1:{s:94:\".litespeed-wrap .litespeed-redetect[aria-label][data-balloon-pos][data-balloon-pos=\'up\']:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-redetect\";}}}i:1;a:3:{i:0;s:9:\"left:auto\";i:1;s:7:\"right:0\";i:2;s:43:\"transform:translate(0%,var(--balloon-move))\";}}i:797;a:2:{i:0;a:2:{s:100:\".litespeed-wrap .litespeed-redetect[aria-label][data-balloon-pos][data-balloon-pos=\'up\']:hover:after\";a:2:{i:3;a:3:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";}i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-redetect\";}}s:116:\".litespeed-wrap .litespeed-redetect[aria-label][data-balloon-pos][data-balloon-pos=\'up\'][data-balloon-visible]:after\";a:2:{i:3;a:4:{i:0;s:10:\"aria-label\";i:1;s:16:\"data-balloon-pos\";i:2;s:16:\"data-balloon-pos\";i:3;s:20:\"data-balloon-visible\";}i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:18:\"litespeed-redetect\";}}}i:1;a:1:{i:0;s:24:\"transform:translate(0,0)\";}}i:798;a:2:{i:0;a:2:{s:29:\".litespeed-col-status-data h3\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-col-status-data\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:29:\".litespeed-col-status-data h4\";a:2:{i:1;a:1:{i:0;s:25:\"litespeed-col-status-data\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:15:\"margin-bottom:0\";i:1;s:15:\"margin-top:20px\";}}i:799;a:2:{i:0;a:1:{s:40:\".litespeed-col-status-data h3 .dashicons\";a:2:{i:1;a:2:{i:0;s:25:\"litespeed-col-status-data\";i:1;s:9:\"dashicons\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:21:\"vertical-align:bottom\";}}i:800;a:2:{i:0;a:1:{s:40:\".litespeed-col-status-data h4 .dashicons\";a:2:{i:1;a:2:{i:0;s:25:\"litespeed-col-status-data\";i:1;s:9:\"dashicons\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:1:{i:0;s:18:\"vertical-align:sub\";}}i:801;a:2:{i:0;a:1:{s:36:\".litespeed-wrap .litespeed-qc-button\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:19:\"litespeed-qc-button\";}}}i:1;a:12:{i:0;s:24:\"background-color:#5efffc\";i:1;s:24:\"border:1px solid #00d0cb\";i:2;s:34:\"box-shadow:0px 2px 0px 0px #00d0cb\";i:3;s:13:\"color:#161f29\";i:4;s:15:\"font-weight:600\";i:5;s:14:\"font-size:15px\";i:6;s:17:\"padding:12px 24px\";i:7;s:17:\"border-radius:3px\";i:8;s:13:\"line-height:1\";i:9;s:19:\"display:inline-flex\";i:10;s:18:\"align-items:center\";i:11;s:15:\"transition:.25s\";}}i:802;a:2:{i:0;a:1:{s:42:\".litespeed-wrap .litespeed-qc-button:hover\";a:1:{i:1;a:2:{i:0;s:14:\"litespeed-wrap\";i:1;s:19:\"litespeed-qc-button\";}}}i:1;a:3:{i:0;s:31:\"background:rgba(33,162,159,.13)\";i:1;s:13:\"color:#5efffc\";i:2;s:20:\"border-color:#00d0cb\";}}i:803;a:2:{i:0;a:1:{s:47:\".litespeed-wrap .litespeed-qc-button .dashicons\";a:1:{i:1;a:3:{i:0;s:14:\"litespeed-wrap\";i:1;s:19:\"litespeed-qc-button\";i:2;s:9:\"dashicons\";}}}i:1;a:1:{i:0;s:8:\"top:auto\";}}i:804;a:2:{i:0;a:1:{s:41:\".litespeed-postbox.litespeed-qc-promo-box\";a:1:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:22:\"litespeed-qc-promo-box\";}}}i:1;a:4:{i:0;s:81:\"background:#161e29 linear-gradient(110deg,rgba(23,28,47,.74),rgba(37,39,102,.67))\";i:1;s:17:\"border-radius:5px\";i:2;s:34:\"box-shadow:0px 4px 0px 0px #161d2e\";i:3;s:11:\"border:none\";}}i:805;a:2:{i:0;a:1:{s:49:\".litespeed-postbox.litespeed-qc-promo-box .inside\";a:1:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:22:\"litespeed-qc-promo-box\";i:2;s:6:\"inside\";}}}i:1;a:2:{i:0;s:12:\"padding:25px\";i:1;s:8:\"margin:0\";}}i:806;a:2:{i:0;a:1:{s:68:\".litespeed-dashboard-group .litespeed-postbox.litespeed-qc-promo-box\";a:1:{i:1;a:3:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";i:2;s:22:\"litespeed-qc-promo-box\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:807;a:2:{i:0;a:1:{s:76:\".litespeed-dashboard-group .litespeed-postbox.litespeed-qc-promo-box .inside\";a:1:{i:1;a:4:{i:0;s:25:\"litespeed-dashboard-group\";i:1;s:17:\"litespeed-postbox\";i:2;s:22:\"litespeed-qc-promo-box\";i:3;s:6:\"inside\";}}}i:1;a:1:{i:0;s:17:\"padding:20px 25px\";}}i:808;a:2:{i:0;a:1:{s:44:\".litespeed-postbox.litespeed-qc-promo-box h3\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:22:\"litespeed-qc-promo-box\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:5:{i:0;s:12:\"margin-top:0\";i:1;s:10:\"color:#fff\";i:2;s:14:\"font-size:24px\";i:3;s:15:\"font-weight:800\";i:4;s:17:\"line-height:1.4em\";}}i:809;a:2:{i:0;a:1:{s:65:\".litespeed-postbox.litespeed-qc-promo-box h3 .litespeed-quic-icon\";a:2:{i:1;a:3:{i:0;s:17:\"litespeed-postbox\";i:1;s:22:\"litespeed-qc-promo-box\";i:2;s:19:\"litespeed-quic-icon\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:4:{i:0;s:10:\"width:24px\";i:1;s:11:\"height:28px\";i:2;s:23:\"background-size:contain\";i:3;s:17:\"margin-right:10px\";}}i:810;a:2:{i:0;a:1:{s:43:\".litespeed-postbox.litespeed-qc-promo-box p\";a:2:{i:1;a:2:{i:0;s:17:\"litespeed-postbox\";i:1;s:22:\"litespeed-qc-promo-box\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:2:{i:0;s:13:\"color:#dbdbdb\";i:1;s:14:\"font-size:1rem\";}}i:811;a:2:{i:0;a:1:{s:27:\"#litespeed-modal-deactivate\";a:1:{i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}}}i:1;a:1:{i:0;s:12:\"padding:20px\";}}i:812;a:2:{i:0;a:1:{s:30:\"#litespeed-modal-deactivate h2\";a:2:{i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:10:\"margin:0px\";}}i:813;a:2:{i:0;a:1:{s:43:\"#litespeed-modal-deactivate .litespeed-wrap\";a:2:{i:1;a:1:{i:0;s:14:\"litespeed-wrap\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}}}i:1;a:1:{i:0;s:15:\"margin:10px 0px\";}}i:814;a:2:{i:0;a:2:{s:62:\"#litespeed-modal-deactivate .deactivate-clear-settings-wrapper\";a:2:{i:1;a:1:{i:0;s:33:\"deactivate-clear-settings-wrapper\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}}s:47:\"#litespeed-modal-deactivate .deactivate-actions\";a:2:{i:1;a:1:{i:0;s:18:\"deactivate-actions\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}}}i:1;a:1:{i:0;s:15:\"margin-top:30px\";}}i:815;a:2:{i:0;a:2:{s:60:\"#litespeed-modal-deactivate .deactivate-reason-wrapper label\";a:3:{i:1;a:1:{i:0;s:25:\"deactivate-reason-wrapper\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}i:0;a:1:{i:0;s:5:\"label\";}}s:68:\"#litespeed-modal-deactivate .deactivate-clear-settings-wrapper label\";a:3:{i:1;a:1:{i:0;s:33:\"deactivate-clear-settings-wrapper\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:13:\"display:block\";i:2;s:17:\"margin-bottom:5px\";}}i:816;a:2:{i:0;a:1:{s:47:\"#litespeed-modal-deactivate .deactivate-actions\";a:2:{i:1;a:1:{i:0;s:18:\"deactivate-actions\";}i:2;a:1:{i:0;s:26:\"litespeed-modal-deactivate\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:29:\"justify-content:space-between\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"6fd6f3d5bc63bd67826f2e44629933a0\";s:10:\"parse_time\";d:0.1448500156402588;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160056,'_transient_timeout_amp-parsed-stylesheet-v40-5df01c5a5e9b37b465e14f03387f199e','1762058756','off'),
(160057,'_transient_amp-parsed-stylesheet-v40-5df01c5a5e9b37b465e14f03387f199e','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-e64351f:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-e64351f\";}}}i:1;a:2:{i:0;s:17:\"position:absolute\";i:1;s:12:\"left:-9966px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"09c39821732b038f09efa2703970f45a\";s:10:\"parse_time\";d:0.015214204788208008;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160081,'_transient_timeout_amp-parsed-stylesheet-v40-6e2821a053b9444ec9e3fbf0e7cdc6c5','1762066024','off'),
(160082,'_transient_amp-parsed-stylesheet-v40-6e2821a053b9444ec9e3fbf0e7cdc6c5','a:8:{s:6:\"tokens\";a:624:{i:0;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:16:\"font-size:93.75%\";}}i:1;a:2:{i:0;a:2:{s:1:\"a\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:2;a:2:{i:0;a:2:{s:7:\"a:hover\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:7:\"a:focus\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:3;a:2:{i:0;a:7:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:5:\"input\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:6:\"select\";a:1:{i:0;a:1:{i:0;s:6:\"select\";}}s:8:\"textarea\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}}i:1;a:4:{i:0;s:115:\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\";i:1;s:19:\"font-weight:inherit\";i:2;s:14:\"font-size:15px\";i:3;s:14:\"font-size:1rem\";}}i:4;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:5;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:35px\";i:1;s:28:\"font-size:2.3333333333333rem\";i:2;s:13:\"display:block\";}}i:6;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:7;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";i:2;s:12:\"display:none\";}}i:8;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:9;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:10;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:11;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:2:{i:0;s:14:\"font-size:25px\";i:1;s:28:\"font-size:1.6666666666667rem\";}}i:12;a:2:{i:0;a:2:{s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:14:\"font-size:20px\";i:1;s:28:\"font-size:1.3333333333333rem\";}}i:13;a:2:{i:0;a:2:{s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}}i:1;a:2:{i:0;s:14:\"font-size:18px\";i:1;s:16:\"font-size:1.2rem\";}}i:14;a:2:{i:0;a:2:{s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:15;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:16;a:2:{i:0;a:1:{s:11:\"::selection\";a:0:{}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";i:1;s:10:\"color:#fff\";}}i:17;a:2:{i:0;a:14:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:18;a:2:{i:0;a:3:{s:17:\".tagcloud a:hover\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".tagcloud a:focus\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".tagcloud a.current-item\";a:2:{i:1;a:2:{i:0;s:8:\"tagcloud\";i:1;s:12:\"current-item\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";}}i:19;a:2:{i:0;a:8:{s:11:\"input:focus\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:24:\"input[type=\"text\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"email\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=\"url\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:28:\"input[type=\"password\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"reset\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"search\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:14:\"textarea:focus\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:20;a:2:{i:0;a:6:{s:27:\"input[type=\"radio\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"input[type=reset]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:30:\"input[type=\"checkbox\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:hover:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:focus:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:39:\"input[type=range]::-webkit-slider-thumb\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";i:1;s:42:\"background-color:var(--ast-global-color-0)\";i:2;s:15:\"box-shadow:none\";}}i:21;a:2:{i:0;a:2:{s:34:\".site-footer a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:34:\".site-footer a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:22;a:2:{i:0;a:2:{s:32:\".single .nav-links .nav-previous\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:12:\"nav-previous\";}}s:28:\".single .nav-links .nav-next\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:8:\"nav-next\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:23;a:2:{i:0;a:2:{s:11:\".entry-meta\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}s:13:\".entry-meta *\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}}i:1;a:2:{i:0;s:16:\"line-height:1.45\";i:1;s:31:\"color:var(--ast-global-color-0)\";}}i:24;a:2:{i:0;a:7:{s:19:\".entry-meta a:hover\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:hover *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:19:\".entry-meta a:focus\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:focus *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".page-links > .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:28:\".page-links .page-link:hover\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:24:\".post-navigation a:hover\";a:2:{i:1;a:1:{i:0;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:25;a:2:{i:0;a:3:{s:11:\"#cat option\";a:2:{i:2;a:1:{i:0;s:3:\"cat\";}i:0;a:1:{i:0;s:6:\"option\";}}s:33:\".secondary .calendar_wrap thead a\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}s:41:\".secondary .calendar_wrap thead a:visited\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:26;a:2:{i:0;a:2:{s:32:\".secondary .calendar_wrap #today\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}}s:22:\".ast-progress-val span\";a:2:{i:1;a:1:{i:0;s:16:\"ast-progress-val\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:36:\"background:var(--ast-global-color-0)\";}}i:27;a:2:{i:0;a:2:{s:32:\".secondary a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:32:\".secondary a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:28;a:2:{i:0;a:1:{s:25:\".calendar_wrap #today > a\";a:3:{i:1;a:1:{i:0;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:29;a:2:{i:0;a:2:{s:22:\".page-links .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:26:\".single .post-navigation a\";a:2:{i:1;a:2:{i:0;s:6:\"single\";i:1;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:30;a:2:{i:0;a:1:{s:18:\".ast-archive-title\";a:1:{i:1;a:1:{i:0;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:31;a:2:{i:0;a:1:{s:13:\".widget-title\";a:1:{i:1;a:1:{i:0;s:12:\"widget-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:21px\";i:1;s:16:\"font-size:1.4rem\";i:2;s:31:\"color:var(--ast-global-color-2)\";}}i:32;a:2:{i:0;a:5:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}s:17:\"#secondary button\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"button\";}}s:16:\"#secondary input\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"#secondary select\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"select\";}}s:19:\"#secondary textarea\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:33;a:2:{i:0;a:2:{s:33:\".ast-single-post .entry-content a\";a:2:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:58:\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\";a:2:{i:1;a:1:{i:0;s:19:\"ast-comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:34;a:2:{i:0;a:11:{s:56:\".ast-single-post .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}s:60:\".ast-single-post .elementor-button-wrapper .elementor-button\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:24:\"elementor-button-wrapper\";i:2;s:16:\"elementor-button\";}}s:43:\".ast-single-post .entry-content .uagb-tab a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:8:\"uagb-tab\";}i:0;a:1:{i:0;s:1:\"a\";}}s:47:\".ast-single-post .entry-content .uagb-ifb-cta a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:12:\"uagb-ifb-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:56:\".ast-single-post .entry-content .wp-block-uagb-buttons a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:21:\"wp-block-uagb-buttons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:54:\".ast-single-post .entry-content .uabb-module-content a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:19:\"uabb-module-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-post-grid a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-post-grid\";}i:0;a:1:{i:0;s:1:\"a\";}}s:48:\".ast-single-post .entry-content .uagb-timeline a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:13:\"uagb-timeline\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-toc__wrap a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-toc__wrap\";}i:0;a:1:{i:0;s:1:\"a\";}}s:52:\".ast-single-post .entry-content .uagb-taxomony-box a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:17:\"uagb-taxomony-box\";}i:0;a:1:{i:0;s:1:\"a\";}}s:46:\".ast-single-post .entry-content .woocommerce a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:11:\"woocommerce\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:35;a:2:{i:0;a:1:{s:37:\".ast-logo-title-inline .site-logo-img\";a:1:{i:1;a:2:{i:0;s:21:\"ast-logo-title-inline\";i:1;s:13:\"site-logo-img\";}}}i:1;a:1:{i:0;s:17:\"padding-right:1em\";}}i:36;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:18:\"margin:4em 0 2.5em\";i:1;s:21:\"word-break:break-word\";i:2;s:13:\"line-height:2\";}}i:37;a:2:{i:0;a:1:{s:13:\"#secondary li\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.25em\";}}i:38;a:2:{i:0;a:1:{s:24:\"#secondary li:last-child\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:39;s:26:\"@media (max-width: 768px){\";i:40;a:2:{i:0;a:1:{s:58:\".js_active .ast-plain-container.ast-single-post #secondary\";a:2:{i:1;a:3:{i:0;s:9:\"js_active\";i:1;s:19:\"ast-plain-container\";i:2;s:15:\"ast-single-post\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:41;s:1:\"}\";i:42;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:11:\"padding:2em\";i:2;s:17:\"margin-bottom:2em\";}}i:43;s:26:\"@media (min-width: 993px){\";i:44;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:60px\";}}i:45;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:46;s:1:\"}\";i:47;s:26:\"@media (max-width: 993px){\";i:48;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:49;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:30px\";}}i:50;s:1:\"}\";i:51;s:25:\"@media (max-width:921px){\";i:52;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:53;s:1:\"}\";i:54;s:25:\"@media (min-width:921px){\";i:55;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:56;s:1:\"}\";i:57;a:2:{i:0;a:1:{s:29:\".wp-block-buttons.aligncenter\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-buttons\";i:1;s:11:\"aligncenter\";}}}i:1;a:1:{i:0;s:22:\"justify-content:center\";}}i:58;s:26:\"@media (min-width:1200px){\";i:59;a:2:{i:0;a:1:{s:31:\".wp-block-group .has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:12:\"padding:20px\";}}i:60;s:1:\"}\";i:61;s:26:\"@media (min-width:1200px){\";i:62;a:2:{i:0;a:4:{s:64:\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:64:\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:63;s:1:\"}\";i:64;a:2:{i:0;a:1:{s:44:\".ast-plain-container.ast-no-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:19:\"ast-plain-container\";i:1;s:14:\"ast-no-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:2:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";}}i:65;s:25:\"@media (max-width:921px){\";i:66;a:2:{i:0;a:2:{s:38:\".ast-theme-transparent-header #primary\";a:2:{i:1;a:1:{i:0;s:28:\"ast-theme-transparent-header\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:40:\".ast-theme-transparent-header #secondary\";a:2:{i:1;a:1:{i:0;s:28:\"ast-theme-transparent-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:67;s:1:\"}\";i:68;a:2:{i:0;a:1:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:unset\";}}i:69;a:2:{i:0;a:1:{s:25:\".wp-block-image.size-full\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-image\";i:1;s:9:\"size-full\";}}}i:1;a:1:{i:0;s:13:\"margin:2rem 0\";}}i:70;a:2:{i:0;a:1:{s:34:\".wp-block-separator.has-background\";a:1:{i:1;a:2:{i:0;s:18:\"wp-block-separator\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:71;a:2:{i:0;a:1:{s:17:\".wp-block-gallery\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-gallery\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.6em\";}}i:72;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:2:{i:0;s:15:\"padding-top:4em\";i:1;s:18:\"padding-bottom:4em\";}}i:73;a:2:{i:0;a:3:{s:61:\".wp-block-group__inner-container .wp-block-columns:last-child\";a:1:{i:1;a:2:{i:0;s:31:\"wp-block-group__inner-container\";i:1;s:16:\"wp-block-columns\";}}s:44:\".wp-block-group__inner-container :last-child\";a:1:{i:1;a:1:{i:0;s:31:\"wp-block-group__inner-container\";}}s:21:\".wp-block-table table\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-table\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:74;a:2:{i:0;a:1:{s:20:\".blocks-gallery-grid\";a:1:{i:1;a:1:{i:0;s:19:\"blocks-gallery-grid\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:75;a:2:{i:0;a:1:{s:34:\".wp-block-navigation-link__content\";a:1:{i:1;a:1:{i:0;s:33:\"wp-block-navigation-link__content\";}}}i:1;a:1:{i:0;s:13:\"padding:5px 0\";}}i:76;a:2:{i:0;a:2:{s:54:\".wp-block-group .wp-block-group .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";i:2;s:21:\"has-text-align-center\";}}s:55:\".wp-block-group .wp-block-column .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:15:\"wp-block-column\";i:2;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:77;a:2:{i:0;a:1:{s:22:\".has-text-align-center\";a:1:{i:1;a:1:{i:0;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:78;s:26:\"@media (max-width:1200px){\";i:79;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:3em\";}}i:80;a:2:{i:0;a:1:{s:31:\".wp-block-group .wp-block-group\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:13:\"padding:1.5em\";}}i:81;a:2:{i:0;a:2:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}s:16:\".wp-block-column\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-column\";}}}i:1;a:1:{i:0;s:13:\"margin:1rem 0\";}}i:82;s:1:\"}\";i:83;s:25:\"@media (min-width:921px){\";i:84;a:2:{i:0;a:1:{s:33:\".wp-block-columns .wp-block-group\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-columns\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:85;s:1:\"}\";i:86;s:25:\"@media (max-width:544px){\";i:87;a:2:{i:0;a:2:{s:54:\".wp-block-cover-image .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:20:\"wp-block-cover-image\";i:1;s:31:\"wp-block-cover__inner-container\";}}s:48:\".wp-block-cover .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-cover\";i:1;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:11:\"width:unset\";}}i:88;a:2:{i:0;a:2:{s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}s:21:\".wp-block-cover-image\";a:1:{i:1;a:1:{i:0;s:20:\"wp-block-cover-image\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:89;a:2:{i:0;a:2:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:90;a:2:{i:0;a:4:{s:35:\".wp-block-media-text__media amp-img\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:36:\".wp-block-media-text__media amp-anim\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:37:\".wp-block-media-text__media amp-video\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:9:\"amp-video\";}}s:39:\".wp-block-media-text__media amp-youtube\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:11:\"amp-youtube\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:14:\"max-width:100%\";}}i:91;a:2:{i:0;a:1:{s:65:\".wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:19:\"wp-block-media-text\";i:1;s:14:\"has-background\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:11:\"padding:1em\";}}i:92;s:1:\"}\";i:93;s:25:\"@media (max-width:921px){\";i:94;a:2:{i:0;a:1:{s:44:\".ast-plain-container.ast-no-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:19:\"ast-plain-container\";i:1;s:14:\"ast-no-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:95;s:1:\"}\";i:96;s:25:\"@media (min-width:544px){\";i:97;a:2:{i:0;a:1:{s:88:\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:22:\"has-media-on-the-right\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 8% 0 0\";}}i:98;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 0 0 8%\";}}i:99;a:2:{i:0;a:6:{s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-bottom-left\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-bottom-right\";}}s:103:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:20:\"is-position-top-left\";}}s:104:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:21:\"is-position-top-right\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-center-right\";}}s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-center-left\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:100;s:1:\"}\";i:101;s:25:\"@media (max-width:544px){\";i:102;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:8% 0\";}}i:103;a:2:{i:0;a:2:{s:56:\".wp-block-media-text .wp-block-media-text__media amp-img\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:57:\".wp-block-media-text .wp-block-media-text__media amp-anim\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:10:\"width:auto\";i:1;s:14:\"max-width:100%\";}}i:104;s:1:\"}\";i:105;a:2:{i:0;a:1:{s:56:\".wp-block-button.is-style-outline .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:106;a:2:{i:0;a:2:{s:79:\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:76:\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";i:2;s:16:\"is-style-outline\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:107;a:2:{i:0;a:2:{s:62:\".wp-block-button.is-style-outline .wp-block-button__link:hover\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:62:\".wp-block-button.is-style-outline .wp-block-button__link:focus\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";i:1;s:38:\"border-color:var(--ast-global-color-1)\";}}i:108;a:2:{i:0;a:2:{s:82:\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:82:\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:109;a:2:{i:0;a:2:{s:37:\".post-page-numbers.current .page-link\";a:1:{i:1;a:3:{i:0;s:17:\"post-page-numbers\";i:1;s:7:\"current\";i:2;s:9:\"page-link\";}}s:37:\".ast-pagination .page-numbers.current\";a:1:{i:1;a:3:{i:0;s:14:\"ast-pagination\";i:1;s:12:\"page-numbers\";i:2;s:7:\"current\";}}}i:1;a:4:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:17:\"border-radius:2px\";}}i:110;s:25:\"@media (min-width:544px){\";i:111;a:2:{i:0;a:1:{s:27:\".entry-content > .alignleft\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignleft\";}}}i:1;a:1:{i:0;s:17:\"margin-right:20px\";}}i:112;a:2:{i:0;a:1:{s:28:\".entry-content > .alignright\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:10:\"alignright\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:113;s:1:\"}\";i:114;a:2:{i:0;a:1:{s:15:\"h1.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:115;a:2:{i:0;a:1:{s:15:\"h2.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:116;a:2:{i:0;a:1:{s:15:\"h3.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:117;s:25:\"@media (max-width:921px){\";i:118;a:2:{i:0;a:2:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:119;a:2:{i:0;a:2:{s:32:\".ast-separate-container #primary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding:1.5em 0\";}}i:120;a:2:{i:0;a:2:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:15:\"padding:1.5em 0\";i:1;s:8:\"margin:0\";}}i:121;a:2:{i:0;a:1:{s:43:\".ast-left-sidebar #content > .ast-container\";a:2:{i:1;a:2:{i:0;s:16:\"ast-left-sidebar\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:29:\"flex-direction:column-reverse\";i:2;s:10:\"width:100%\";}}i:122;a:2:{i:0;a:2:{s:30:\".ast-author-box amp-img.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:31:\".ast-author-box amp-anim.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"margin:20px 0 0 0\";}}i:123;s:1:\"}\";i:124;s:25:\"@media (max-width:921px){\";i:125;a:2:{i:0;a:1:{s:20:\"#secondary.secondary\";a:2:{i:1;a:1:{i:0;s:9:\"secondary\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:126;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:16:\"padding-left:1em\";i:1;s:17:\"padding-right:1em\";}}i:127;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-two-container #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:14:\"padding-left:0\";i:1;s:15:\"padding-right:0\";}}i:128;a:2:{i:0;a:2:{s:51:\".ast-page-builder-template .entry-header #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:12:\"entry-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:37:\".ast-page-builder-template #secondary\";a:2:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:129;s:1:\"}\";i:130;s:25:\"@media (max-width:921px){\";i:131;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:132;a:2:{i:0;a:2:{s:54:\".ast-page-builder-template.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:55:\".ast-page-builder-template.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:20px\";i:1;s:17:\"padding-left:20px\";}}i:133;a:2:{i:0;a:2:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:14:\"padding-left:0\";}}i:134;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:135;s:1:\"}\";i:136;s:25:\"@media (min-width:922px){\";i:137;a:2:{i:0;a:2:{s:50:\".ast-separate-container.ast-right-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:49:\".ast-separate-container.ast-left-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:138;a:2:{i:0;a:1:{s:50:\".search-no-results.ast-separate-container #primary\";a:2:{i:1;a:2:{i:0;s:17:\"search-no-results\";i:1;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:4em\";}}i:139;s:1:\"}\";i:140;s:25:\"@media (min-width:922px){\";i:141;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:27:\"border-right:1px solid #eee\";}}i:142;a:2:{i:0;a:1:{s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:26:\"border-left:1px solid #eee\";}}i:143;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:26:\"border-left:1px solid #eee\";i:1;s:16:\"margin-left:-1px\";}}i:144;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:27:\"border-right:1px solid #eee\";i:1;s:17:\"margin-right:-1px\";}}i:145;a:2:{i:0;a:1:{s:70:\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:17:\"padding-left:30px\";i:1;s:15:\"padding-right:0\";}}i:146;a:2:{i:0;a:1:{s:69:\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:30px\";i:1;s:14:\"padding-left:0\";}}i:147;a:2:{i:0;a:2:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:51:\".ast-separate-container.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:148;a:2:{i:0;a:1:{s:71:\".ast-separate-container.ast-two-container #secondary .widget:last-child\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:149;s:1:\"}\";i:150;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:151;a:2:{i:0;a:2:{s:45:\".wp-block-button .wp-block-button__link:hover\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}s:45:\".wp-block-button .wp-block-button__link:focus\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:152;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:8:{i:0;s:18:\"border-style:solid\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:10:\"color:#fff\";i:4;s:19:\"font-family:inherit\";i:5;s:19:\"font-weight:inherit\";i:6;s:13:\"line-height:1\";i:7;s:17:\"border-radius:2px\";}}i:153;a:2:{i:0;a:1:{s:57:\".wp-block-buttons .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:16:\"wp-block-buttons\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:15px\";i:1;s:18:\"padding-right:30px\";i:2;s:19:\"padding-bottom:15px\";i:3;s:17:\"padding-left:30px\";}}i:154;s:25:\"@media (max-width:921px){\";i:155;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:156;s:1:\"}\";i:157;s:25:\"@media (max-width:544px){\";i:158;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:159;s:1:\"}\";i:160;a:2:{i:0;a:11:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:106:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:16:{i:0;s:18:\"border-style:solid\";i:1;s:18:\"border-top-width:0\";i:2;s:20:\"border-right-width:0\";i:3;s:19:\"border-left-width:0\";i:4;s:21:\"border-bottom-width:0\";i:5;s:10:\"color:#fff\";i:6;s:38:\"border-color:var(--ast-global-color-0)\";i:7;s:42:\"background-color:var(--ast-global-color-0)\";i:8;s:17:\"border-radius:2px\";i:9;s:16:\"padding-top:15px\";i:10;s:18:\"padding-right:30px\";i:11;s:19:\"padding-bottom:15px\";i:12;s:17:\"padding-left:30px\";i:13;s:19:\"font-family:inherit\";i:14;s:19:\"font-weight:inherit\";i:15;s:13:\"line-height:1\";}}i:161;a:2:{i:0;a:18:{s:12:\"button:focus\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:18:\".menu-toggle:hover\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:12:\"button:hover\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:17:\".ast-button:hover\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:38:\".ast-custom-button:hover .button:hover\";a:1:{i:1;a:2:{i:0;s:17:\"ast-custom-button\";i:1;s:6:\"button\";}}s:24:\".ast-custom-button:hover\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:23:\"input[type=reset]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=reset]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:hover\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:focus\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:48:\"body .wp-block-file .wp-block-file__button:hover\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}s:48:\"body .wp-block-file .wp-block-file__button:focus\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:162;s:25:\"@media (min-width:544px){\";i:163;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:164;s:1:\"}\";i:165;s:25:\"@media (max-width:544px){\";i:166;a:2:{i:0;a:4:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}s:48:\".ast-separate-container .ast-archive-description\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:23:\"ast-archive-description\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:167;a:2:{i:0;a:1:{s:47:\".ast-separate-container #content .ast-container\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:2:{i:0;s:18:\"padding-left:.54em\";i:1;s:19:\"padding-right:.54em\";}}i:168;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:169;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:170;a:2:{i:0;a:1:{s:55:\".ast-search-menu-icon.ast-dropdown-active .search-field\";a:1:{i:1;a:3:{i:0;s:20:\"ast-search-menu-icon\";i:1;s:19:\"ast-dropdown-active\";i:2;s:12:\"search-field\";}}}i:1;a:1:{i:0;s:11:\"width:170px\";}}i:171;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:172;a:2:{i:0;a:1:{s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:173;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:19:\"margin-bottom:1.5em\";i:1;s:16:\"padding-left:1em\";i:2;s:17:\"padding-right:1em\";}}i:174;s:1:\"}\";i:175;s:25:\"@media (max-width:921px){\";i:176;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:177;a:2:{i:0;a:1:{s:63:\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-header-stack\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:178;a:2:{i:0;a:1:{s:113:\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:30:\"ast-header-custom-item-outside\";i:2;s:23:\"ast-mobile-header-stack\";i:3;s:15:\"main-header-bar\";i:4;s:15:\"ast-search-icon\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:179;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:180;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:181;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:182;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:183;s:1:\"}\";i:184;a:2:{i:0;a:4:{s:32:\".entry-content > .wp-block-group\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";}}s:37:\".entry-content > .wp-block-media-text\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:34:\".entry-content > .wp-block-columns\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";}}}i:1;a:4:{i:0;s:14:\"max-width:58em\";i:1;s:22:\"width:calc(100% - 4em)\";i:2;s:16:\"margin-left:auto\";i:3;s:17:\"margin-right:auto\";}}i:185;a:2:{i:0;a:1:{s:56:\".entry-content [class*=\"__inner-container\"] > .alignfull\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:14:\"max-width:100%\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:186;a:2:{i:0;a:1:{s:112:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:187;a:2:{i:0;a:1:{s:155:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:15:\"max-width:50rem\";i:1;s:10:\"width:100%\";}}i:188;s:25:\"@media (min-width:921px){\";i:189;a:2:{i:0;a:6:{s:57:\".entry-content > .wp-block-group.alignwide.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignwide\";i:3;s:14:\"has-background\";}}s:57:\".entry-content > .wp-block-group.alignfull.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignfull\";i:3;s:14:\"has-background\";}}s:42:\".entry-content > .wp-block-cover.alignwide\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignwide\";}}s:42:\".entry-content > .wp-block-cover.alignfull\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignfull\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignwide\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignwide\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignfull\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding:6em 4em\";}}i:190;a:2:{i:0;a:1:{s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:191;s:1:\"}\";i:192;s:26:\"@media (min-width:1200px){\";i:193;a:2:{i:0;a:1:{s:27:\".entry-content .alignfull p\";a:2:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"max-width:1200px\";}}i:194;a:2:{i:0;a:1:{s:25:\".entry-content .alignfull\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:10:\"width:100%\";}}i:195;a:2:{i:0;a:2:{s:52:\".ast-page-builder-template .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}s:56:\".entry-content [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignwide\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:196;a:2:{i:0;a:1:{s:67:\".entry-content .alignfull [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:15:\"max-width:80rem\";}}i:197;s:1:\"}\";i:198;s:25:\"@media (min-width:545px){\";i:199;a:2:{i:0;a:1:{s:38:\".site-main .entry-content > .alignwide\";a:1:{i:1;a:3:{i:0;s:9:\"site-main\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:200;a:2:{i:0;a:3:{s:30:\".wp-block-group.has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:3:{i:0;s:11:\"padding:4em\";i:1;s:12:\"margin-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:201;a:2:{i:0;a:2:{s:75:\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:9:\"alignfull\";i:3;s:28:\"wp-block-media-text__content\";}}s:80:\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:14:\"has-background\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:0 8%\";}}i:202;s:1:\"}\";i:203;s:25:\"@media (max-width:921px){\";i:204;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:205;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:206;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:207;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:208;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:209;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:210;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:211;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:212;s:1:\"}\";i:213;s:25:\"@media (max-width:544px){\";i:214;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:215;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:216;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:217;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:218;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:219;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:220;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:221;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:222;s:1:\"}\";i:223;s:25:\"@media (max-width:921px){\";i:224;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:225;s:1:\"}\";i:226;s:25:\"@media (max-width:544px){\";i:227;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:228;s:1:\"}\";i:229;s:25:\"@media (min-width:922px){\";i:230;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:16:\"max-width:1240px\";}}i:231;s:1:\"}\";i:232;s:25:\"@media (min-width:922px){\";i:233;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:234;s:1:\"}\";i:235;s:25:\"@media (max-width:921px){\";i:236;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:237;s:1:\"}\";i:238;s:25:\"@media (min-width:922px){\";i:239;a:2:{i:0;a:2:{s:80:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}s:87:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:16:\"margin-left:-0px\";}}i:240;s:1:\"}\";i:241;a:2:{i:0;a:1:{s:16:\".wp-block-search\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-search\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:20px\";}}i:242;a:2:{i:0;a:1:{s:22:\".wp-block-site-tagline\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-site-tagline\";}}}i:1;a:1:{i:0;s:15:\"margin-top:20px\";}}i:243;a:2:{i:0;a:2:{s:44:\"form.wp-block-search .wp-block-search__input\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}s:80:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";}}}i:1;a:2:{i:0;s:20:\"border-color:#eaeaea\";i:1;s:18:\"background:#fafafa\";}}i:244;a:2:{i:0;a:2:{s:110:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\";a:1:{i:1;a:4:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";i:3;s:22:\"wp-block-search__input\";}}s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:19:\"outline:thin dotted\";}}i:245;a:2:{i:0;a:1:{s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:24:\"border-color:transparent\";}}i:246;a:2:{i:0;a:1:{s:77:\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\";a:2:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}}i:1;a:1:{i:0;s:12:\"padding:12px\";}}i:247;a:2:{i:0;a:1:{s:49:\"form.wp-block-search .wp-block-search__button svg\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:23:\"wp-block-search__button\";}i:0;a:2:{i:0;s:4:\"form\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:17:\"fill:currentColor\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";}}i:248;a:2:{i:0;a:1:{s:26:\".wp-block-loginout p label\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:249;a:2:{i:0;a:1:{s:66:\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:250;a:2:{i:0;a:1:{s:40:\".wp-block-loginout .login-remember input\";a:2:{i:1;a:2:{i:0;s:17:\"wp-block-loginout\";i:1;s:14:\"login-remember\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:12:\"width:1.1rem\";i:1;s:13:\"height:1.1rem\";i:2;s:18:\"margin:0 5px 4px 0\";i:3;s:21:\"vertical-align:middle\";}}i:251;a:2:{i:0;a:1:{s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:252;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:21:\"padding:0 1.2em 1.2em\";}}i:253;a:2:{i:0;a:1:{s:14:\".wp-block-file\";a:1:{i:1;a:1:{i:0;s:13:\"wp-block-file\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";i:2;s:14:\"flex-wrap:wrap\";i:3;s:29:\"justify-content:space-between\";}}i:254;a:2:{i:0;a:1:{s:19:\".wp-block-pullquote\";a:1:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}}}i:1;a:1:{i:0;s:11:\"border:none\";}}i:255;a:2:{i:0;a:1:{s:38:\".wp-block-pullquote blockquote::before\";a:2:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:10:{i:0;s:13:\"content:\"”\"\";i:1;s:34:\"font-family:\"Helvetica\",sans-serif\";i:2;s:12:\"display:flex\";i:3;s:24:\"transform:rotate(180deg)\";i:4;s:14:\"font-size:6rem\";i:5;s:17:\"font-style:normal\";i:6;s:13:\"line-height:1\";i:7;s:16:\"font-weight:bold\";i:8;s:18:\"align-items:center\";i:9;s:22:\"justify-content:center\";}}i:256;a:2:{i:0;a:1:{s:57:\"figure.wp-block-pullquote.is-style-solid-color blockquote\";a:2:{i:1;a:2:{i:0;s:18:\"wp-block-pullquote\";i:1;s:20:\"is-style-solid-color\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"blockquote\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:18:\"text-align:inherit\";}}i:257;a:2:{i:0;a:2:{s:47:\"ul.wp-block-categories-list.wp-block-categories\";a:2:{i:1;a:2:{i:0;s:24:\"wp-block-categories-list\";i:1;s:19:\"wp-block-categories\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:43:\"ul.wp-block-archives-list.wp-block-archives\";a:2:{i:1;a:2:{i:0;s:22:\"wp-block-archives-list\";i:1;s:17:\"wp-block-archives\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:20:\"list-style-type:none\";}}i:258;a:2:{i:0;a:1:{s:22:\".wp-block-button__link\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:29:\"border:2px solid currentColor\";}}i:259;a:2:{i:0;a:2:{s:2:\"ul\";a:1:{i:0;a:1:{i:0;s:2:\"ul\";}}s:2:\"ol\";a:1:{i:0;a:1:{i:0;s:2:\"ol\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:260;a:2:{i:0;a:1:{s:28:\"figure.alignright figcaption\";a:2:{i:1;a:1:{i:0;s:10:\"alignright\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"figcaption\";}}}i:1;a:1:{i:0;s:16:\"text-align:right\";}}i:261;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-0-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:262;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-0-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:263;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-0-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:264;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-0-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:265;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-1-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:266;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-1-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:267;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-1-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:268;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-1-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:269;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-2-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:270;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-2-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:271;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-2-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:272;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-2-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:273;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-3-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:274;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-3-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:275;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-3-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:276;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-3-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:277;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-4-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:278;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-4-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:279;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-4-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:280;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-4-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:281;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-5-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:282;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-5-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:283;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-5-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:284;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-5-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:285;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-6-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:286;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-6-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:287;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-6-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:288;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-6-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:289;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-7-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:290;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-7-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:291;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-7-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:292;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-7-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:293;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-8-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:294;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-8-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:295;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-8-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:296;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-8-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:297;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:9:{i:0;s:28:\"--ast-global-color-0:#0170b9\";i:1;s:28:\"--ast-global-color-1:#3a3a3a\";i:2;s:28:\"--ast-global-color-2:#3a3a3a\";i:3;s:28:\"--ast-global-color-3:#4b4f58\";i:4;s:28:\"--ast-global-color-4:#f5f5f5\";i:5;s:25:\"--ast-global-color-5:#fff\";i:6;s:28:\"--ast-global-color-6:#f2f5f7\";i:7;s:28:\"--ast-global-color-7:#424242\";i:8;s:25:\"--ast-global-color-8:#000\";}}i:298;a:2:{i:0;a:3:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}s:32:\".ast-breadcrumbs .trail-items li\";a:2:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:8:\"margin:0\";i:2;s:9:\"padding:0\";i:3;s:11:\"border:none\";i:4;s:18:\"background:inherit\";i:5;s:13:\"text-indent:0\";}}i:299;a:2:{i:0;a:1:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}}i:1;a:4:{i:0;s:17:\"font-size:inherit\";i:1;s:18:\"font-style:inherit\";i:2;s:19:\"font-weight:inherit\";i:3;s:13:\"color:inherit\";}}i:300;a:2:{i:0;a:1:{s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:301;a:2:{i:0;a:1:{s:22:\".trail-items li::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:14:\"padding:0 .3em\";i:1;s:12:\"content:\"»\"\";}}i:302;a:2:{i:0;a:1:{s:35:\".trail-items li:last-of-type::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:303;a:2:{i:0;a:12:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:304;a:2:{i:0;a:1:{s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:305;s:25:\"@media (max-width:921px){\";i:306;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-tablet-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-tablet-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:307;s:1:\"}\";i:308;s:25:\"@media (max-width:544px){\";i:309;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-mobile-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-mobile-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:310;s:1:\"}\";i:311;a:2:{i:0;a:1:{s:57:\".ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:312;s:25:\"@media (max-width:921px){\";i:313;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:314;s:1:\"}\";i:315;s:25:\"@media (max-width:544px){\";i:316;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:317;s:1:\"}\";i:318;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:319;a:2:{i:0;a:2:{s:29:\".ast-builder-menu-1 .sub-menu\";a:1:{i:1;a:2:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:8:\"sub-menu\";}}s:47:\".ast-builder-menu-1 .inline-on-mobile .sub-menu\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"inline-on-mobile\";i:2;s:8:\"sub-menu\";}}}i:1;a:7:{i:0;s:20:\"border-top-width:2px\";i:1;s:23:\"border-bottom-width:0px\";i:2;s:22:\"border-right-width:0px\";i:3;s:21:\"border-left-width:0px\";i:4;s:38:\"border-color:var(--ast-global-color-0)\";i:5;s:18:\"border-style:solid\";i:6;s:17:\"border-radius:0px\";}}i:320;a:2:{i:0;a:2:{s:62:\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";}}s:81:\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:14:\"margin-top:0px\";}}i:321;a:2:{i:0;a:2:{s:82:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:101:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:22:\"height:calc(0px + 5px)\";}}i:322;a:2:{i:0;a:1:{s:64:\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:323;s:25:\"@media (max-width:921px){\";i:324;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:325;a:2:{i:0;a:1:{s:62:\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:22:\"menu-item-has-children\";i:2;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:326;s:1:\"}\";i:327;s:25:\"@media (max-width:544px){\";i:328;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:329;s:1:\"}\";i:330;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:331;s:25:\"@media (max-width:921px){\";i:332;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:333;s:1:\"}\";i:334;s:25:\"@media (max-width:544px){\";i:335;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:336;s:1:\"}\";i:337;a:2:{i:0;a:1:{s:23:\".site-below-footer-wrap\";a:1:{i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:16:\"padding-top:20px\";i:1;s:19:\"padding-bottom:20px\";}}i:338;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:21:\"background-color:#eee\";i:1;s:15:\"min-height:80px\";}}i:339;a:2:{i:0;a:1:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:340;a:2:{i:0;a:2:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}s:89:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:19:\"site-footer-section\";}}}i:1;a:1:{i:0;s:22:\"align-items:flex-start\";}}i:341;a:2:{i:0;a:1:{s:111:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:21:\"ast-footer-row-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:342;a:2:{i:0;a:1:{s:48:\".ast-builder-grid-row-full .ast-builder-grid-row\";a:1:{i:1;a:2:{i:0;s:25:\"ast-builder-grid-row-full\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:343;s:25:\"@media (max-width:921px){\";i:344;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-tablet-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:345;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-tablet-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:346;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-tablet-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:347;s:1:\"}\";i:348;s:25:\"@media (max-width:544px){\";i:349;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-mobile-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:350;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-mobile-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:351;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-mobile-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:352;s:1:\"}\";i:353;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:354;s:25:\"@media (max-width:921px){\";i:355;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:356;s:1:\"}\";i:357;s:25:\"@media (max-width:544px){\";i:358;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:359;s:1:\"}\";i:360;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:361;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:362;s:25:\"@media (max-width:921px){\";i:363;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:364;s:1:\"}\";i:365;s:25:\"@media (max-width:544px){\";i:366;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:367;s:1:\"}\";i:368;a:2:{i:0;a:1:{s:48:\".ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:20:\"ast-footer-copyright\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:369;s:25:\"@media (max-width:921px){\";i:370;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:371;s:1:\"}\";i:372;s:25:\"@media (max-width:544px){\";i:373;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:374;s:1:\"}\";i:375;s:25:\"@media (max-width:921px){\";i:376;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:377;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:378;a:2:{i:0;a:1:{s:60:\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-main-header-nav-open\";i:2;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:379;a:2:{i:0;a:1:{s:95:\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:29:\"ast-main-header-bar-alignment\";i:2;s:9:\"toggle-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:380;a:2:{i:0;a:1:{s:77:\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:7:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:8:\"border:0\";i:4;s:23:\"border-bottom-width:1px\";i:5;s:18:\"border-style:solid\";i:6;s:20:\"border-color:#eaeaea\";}}i:381;a:2:{i:0;a:1:{s:75:\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:382;a:2:{i:0;a:1:{s:73:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:383;a:2:{i:0;a:1:{s:97:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:384;a:2:{i:0;a:1:{s:114:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:385;a:2:{i:0;a:1:{s:106:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:386;a:2:{i:0;a:1:{s:112:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:387;a:2:{i:0;a:1:{s:81:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:388;a:2:{i:0;a:3:{s:30:\".ast-amp .ast-below-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-below-header-bar\";}}s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}s:30:\".ast-amp .ast-above-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-above-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:389;s:1:\"}\";i:390;s:25:\"@media (max-width:921px){\";i:391;a:2:{i:0;a:1:{s:49:\".site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:3:{i:0;s:11:\"site-header\";i:1;s:20:\"main-header-bar-wrap\";i:2;s:13:\"site-branding\";}}}i:1;a:9:{i:0;s:12:\"display:flex\";i:1;s:18:\"-webkit-box-flex:1\";i:2;s:14:\"-webkit-flex:1\";i:3;s:15:\"-moz-box-flex:1\";i:4;s:10:\"-ms-flex:1\";i:5;s:6:\"flex:1\";i:6;s:25:\"-webkit-align-self:center\";i:7;s:26:\"-ms-flex-item-align:center\";i:8;s:17:\"align-self:center\";}}i:392;a:2:{i:0;a:1:{s:68:\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:3:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";i:2;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:393;a:2:{i:0;a:1:{s:16:\".main-navigation\";a:1:{i:1;a:1:{i:0;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:394;a:2:{i:0;a:1:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:395;a:2:{i:0;a:1:{s:40:\".ast-main-header-bar-alignment.toggle-on\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:396;a:2:{i:0;a:1:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:15:\"text-align:left\";i:2;s:12:\"border-top:0\";}}i:397;a:2:{i:0;a:1:{s:27:\".main-header-bar-navigation\";a:1:{i:1;a:1:{i:0;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:23:\"width:calc(100% + 40px)\";i:1;s:14:\"margin:0 -20px\";}}i:398;a:2:{i:0;a:1:{s:62:\".main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:3:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:399;a:2:{i:0;a:1:{s:87:\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:4:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:13:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:34:\"-webkit-font-smoothing:antialiased\";i:7;s:33:\"-moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:26:\"-webkit-transition:all .2s\";i:12;s:18:\"transition:all .2s\";}}i:400;s:1:\"}\";i:401;s:25:\"@media (max-width:921px){\";i:402;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:403;s:1:\"}\";i:404;s:25:\"@media (max-width:921px){\";i:405;a:2:{i:0;a:1:{s:34:\".ast-amp .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:406;a:2:{i:0;a:1:{s:25:\".ast-amp .main-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:407;a:2:{i:0;a:2:{s:50:\".ast-amp .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:55:\".ast-amp .main-navigation ul .button-custom-menu-item a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:23:\"button-custom-menu-item\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:1:\"a\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:408;a:2:{i:0;a:1:{s:57:\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:409;a:2:{i:0;a:1:{s:68:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:410;a:2:{i:0;a:1:{s:90:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\";a:1:{i:1;a:8:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-item\";i:6;s:9:\"menu-item\";i:7;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:411;a:2:{i:0;a:1:{s:26:\".ast-amp .main-header-menu\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f9f9f9\";}}i:412;a:2:{i:0;a:1:{s:29:\".ast-amp .main-header-menu ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:6:{i:0;s:24:\"background-color:#f9f9f9\";i:1;s:15:\"position:static\";i:2;s:9:\"opacity:1\";i:3;s:18:\"visibility:visible\";i:4;s:8:\"border:0\";i:5;s:10:\"width:auto\";}}i:413;a:2:{i:0;a:2:{s:67:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}s:74:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:414;a:2:{i:0;a:2:{s:66:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}s:73:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:415;a:2:{i:0;a:1:{s:39:\".ast-amp .submenu-with-border .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:416;a:2:{i:0;a:1:{s:21:\".ast-amp .user-select\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:11:\"user-select\";}}}i:1;a:1:{i:0;s:10:\"clear:both\";}}i:417;a:2:{i:0;a:1:{s:33:\".ast-amp .ast-mobile-menu-buttons\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:23:\"ast-mobile-menu-buttons\";}}}i:1;a:7:{i:0;s:16:\"text-align:right\";i:1;s:12:\"display:flex\";i:2;s:20:\"-webkit-box-pack:end\";i:3;s:32:\"-webkit-justify-content:flex-end\";i:4;s:17:\"-moz-box-pack:end\";i:5;s:17:\"-ms-flex-pack:end\";i:6;s:24:\"justify-content:flex-end\";}}i:418;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:6:{i:0;s:18:\"-webkit-box-flex:1\";i:1;s:17:\"-webkit-flex:auto\";i:2;s:15:\"-moz-box-flex:1\";i:3;s:13:\"-ms-flex:auto\";i:4;s:9:\"flex:auto\";i:5;s:23:\"width:calc(100% + 40px)\";}}i:419;a:2:{i:0;a:1:{s:39:\".ast-amp .ast-main-header-bar-alignment\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:29:\"ast-main-header-bar-alignment\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:420;a:2:{i:0;a:1:{s:58:\".ast-amp .site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:11:\"site-header\";i:2;s:20:\"main-header-bar-wrap\";i:3;s:13:\"site-branding\";}}}i:1;a:10:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:14:\"-webkit-flex:1\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:10:\"-ms-flex:1\";i:6;s:6:\"flex:1\";i:7;s:25:\"-webkit-align-self:center\";i:8;s:26:\"-ms-flex-item-align:center\";i:9;s:17:\"align-self:center\";}}i:421;a:2:{i:0;a:1:{s:27:\".ast-amp .ast-site-identity\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"ast-site-identity\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:422;a:2:{i:0;a:1:{s:90:\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";i:4;s:9:\"sub-arrow\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:423;a:2:{i:0;a:1:{s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:424;a:2:{i:0;a:1:{s:58:\".ast-main-header-bar-alignment .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:425;a:2:{i:0;a:1:{s:65:\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:426;a:2:{i:0;a:1:{s:63:\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:427;a:2:{i:0;a:1:{s:87:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:428;a:2:{i:0;a:1:{s:104:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:429;a:2:{i:0;a:1:{s:96:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:430;a:2:{i:0;a:1:{s:102:\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:431;a:2:{i:0;a:1:{s:71:\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:432;a:2:{i:0;a:1:{s:45:\".ast-amp .main-navigation ul > li:first-child\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:433;a:2:{i:0;a:1:{s:31:\".ast-amp .main-navigation ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:2:{i:0;s:9:\"left:auto\";i:1;s:10:\"right:auto\";}}i:434;a:2:{i:0;a:1:{s:28:\".ast-amp .main-navigation li\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:435;a:2:{i:0;a:1:{s:33:\".ast-amp .main-navigation .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:436;a:2:{i:0;a:1:{s:36:\".ast-amp .main-navigation .widget li\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:auto\";}}i:437;a:2:{i:0;a:1:{s:44:\".ast-amp .main-navigation .widget:last-child\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:438;a:2:{i:0;a:1:{s:32:\".ast-amp .main-header-menu ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:439;a:2:{i:0;a:2:{s:54:\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:16:\"custom-logo-link\";}}s:52:\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:440;a:2:{i:0;a:1:{s:61:\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:23:\"custom-mobile-logo-link\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:441;a:2:{i:0;a:2:{s:85:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:16:\"custom-logo-link\";}}s:83:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:442;a:2:{i:0;a:1:{s:40:\".ast-amp .ast-header-widget-area .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:22:\"ast-header-widget-area\";i:2;s:6:\"widget\";}}}i:1;a:2:{i:0;s:13:\"margin:.5em 0\";i:1;s:13:\"display:block\";}}i:443;a:2:{i:0;a:1:{s:27:\".ast-amp .nav-fallback-text\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"nav-fallback-text\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:444;a:2:{i:0;a:1:{s:76:\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:28:\"woocommerce-custom-menu-item\";i:3;s:18:\"ast-cart-menu-wrap\";}}}i:1;a:3:{i:0;s:10:\"height:3em\";i:1;s:13:\"line-height:3\";i:2;s:15:\"text-align:left\";}}i:445;a:2:{i:0;a:1:{s:52:\".ast-amp #ast-site-header-cart .widget_shopping_cart\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"widget_shopping_cart\";}i:2;a:1:{i:0;s:20:\"ast-site-header-cart\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:446;a:2:{i:0;a:1:{s:58:\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\";a:1:{i:1;a:3:{i:0;s:9:\"ast-theme\";i:1;s:25:\"ast-woocommerce-cart-menu\";i:2;s:20:\"ast-site-header-cart\";}}}i:1;a:3:{i:0;s:13:\"order:initial\";i:1;s:13:\"line-height:3\";i:2;s:19:\"padding:0 1em 1em 0\";}}i:447;a:2:{i:0;a:2:{s:58:\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:22:\"widget_edd_cart_widget\";}}s:65:\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:29:\"ast-edd-header-cart-info-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:448;a:2:{i:0;a:1:{s:64:\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:30:\"ast-masthead-custom-menu-items\";i:2;s:20:\"edd-custom-menu-item\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:449;a:2:{i:0;a:1:{s:73:\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";i:3;s:12:\"slide-search\";i:4;s:11:\"search-form\";}}}i:1;a:1:{i:0;s:7:\"right:0\";}}i:450;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-menu .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:451;a:2:{i:0;a:1:{s:41:\".ast-amp .submenu-with-border .sub-menu a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:452;a:2:{i:0;a:1:{s:59:\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:453;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-buttons-minimal\";}}}i:1;a:2:{i:0;s:22:\"background:transparent\";i:1;s:11:\"border:none\";}}i:454;s:1:\"}\";i:455;a:2:{i:0;a:1:{s:40:\".ast-header-break-point .main-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:456;s:25:\"@media (min-width:922px){\";i:457;a:2:{i:0;a:1:{s:16:\".main-header-bar\";a:1:{i:1;a:1:{i:0;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:458;s:1:\"}\";i:459;s:25:\"@media (min-width:922px){\";i:460;a:2:{i:0;a:1:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"width:70%\";}}i:461;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"width:30%\";}}i:462;s:1:\"}\";i:463;a:2:{i:0;a:3:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}s:29:\"#astra-footer-menu .menu-item\";a:2:{i:1;a:1:{i:0;s:9:\"menu-item\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}s:48:\".main-header-bar .ast-masthead-custom-menu-items\";a:1:{i:1;a:2:{i:0;s:15:\"main-header-bar\";i:1;s:30:\"ast-masthead-custom-menu-items\";}}}i:1;a:14:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:23:\"-webkit-box-pack:center\";i:3;s:30:\"-webkit-justify-content:center\";i:4;s:20:\"-moz-box-pack:center\";i:5;s:20:\"-ms-flex-pack:center\";i:6;s:22:\"justify-content:center\";i:7;s:27:\"-webkit-box-orient:vertical\";i:8;s:28:\"-webkit-box-direction:normal\";i:9;s:29:\"-webkit-flex-direction:column\";i:10;s:24:\"-moz-box-orient:vertical\";i:11;s:25:\"-moz-box-direction:normal\";i:12;s:25:\"-ms-flex-direction:column\";i:13;s:21:\"flex-direction:column\";}}i:464;a:2:{i:0;a:2:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}s:44:\"#astra-footer-menu > .menu-item > .menu-link\";a:2:{i:1;a:2:{i:0;s:9:\"menu-item\";i:1;s:9:\"menu-link\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}}i:1;a:8:{i:0;s:11:\"height:100%\";i:1;s:24:\"-webkit-box-align:center\";i:2;s:26:\"-webkit-align-items:center\";i:3;s:21:\"-moz-box-align:center\";i:4;s:21:\"-ms-flex-align:center\";i:5;s:18:\"align-items:center\";i:6;s:16:\"-js-display:flex\";i:7;s:12:\"display:flex\";}}i:465;a:2:{i:0;a:1:{s:95:\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\";a:2:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";i:4;s:10:\"icon-arrow\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:3:\"svg\";}}}i:1;a:5:{i:0;s:8:\"top:.2em\";i:1;s:14:\"margin-top:0px\";i:2;s:15:\"margin-left:0px\";i:3;s:11:\"width:.65em\";i:4;s:43:\"transform:translate(0,-2px) rotateZ(270deg)\";}}i:466;a:2:{i:0;a:1:{s:66:\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\";a:1:{i:1;a:3:{i:0;s:24:\"ast-mobile-popup-content\";i:1;s:20:\"ast-submenu-expanded\";i:2;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:467;a:2:{i:0;a:3:{s:38:\".ast-separate-container .blog-layout-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-1\";}}s:38:\".ast-separate-container .blog-layout-2\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-2\";}}s:38:\".ast-separate-container .blog-layout-3\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-3\";}}}i:1;a:2:{i:0;s:28:\"background-color:transparent\";i:1;s:21:\"background-image:none\";}}i:468;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:469;s:25:\"@media (max-width:921px){\";i:470;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:471;s:1:\"}\";i:472;s:25:\"@media (max-width:544px){\";i:473;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:474;s:1:\"}\";i:475;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:476;s:25:\"@media (max-width:921px){\";i:477;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:478;s:1:\"}\";i:479;s:25:\"@media (max-width:544px){\";i:480;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:481;s:1:\"}\";i:482;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:483;s:25:\"@media (max-width:921px){\";i:484;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:485;s:1:\"}\";i:486;s:25:\"@media (max-width:544px){\";i:487;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:488;s:1:\"}\";i:489;a:2:{i:0;a:2:{s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:14:\"padding:10px 0\";i:1;s:11:\"height:auto\";}}i:490;a:2:{i:0;a:2:{s:42:\".ast-mobile-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:43:\".ast-desktop-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-top:10px\";}}i:491;a:2:{i:0;a:2:{s:46:\".ast-mobile-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:16:\"ast-builder-menu\";}}s:47:\".ast-desktop-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:16:\"ast-builder-menu\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:492;a:2:{i:0;a:2:{s:41:\".ast-mobile-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:42:\".ast-desktop-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:493;a:2:{i:0;a:2:{s:72:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}s:73:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:494;a:2:{i:0;a:1:{s:104:\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:20:\"ast-submenu-expanded\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:495;a:2:{i:0;a:6:{s:47:\"#ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:43:\".ast-mobile-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:15:\"ast-search-icon\";}}s:44:\".ast-desktop-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:15:\"ast-search-icon\";}}s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:95:\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}s:72:\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\";a:1:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:496;a:2:{i:0;a:2:{s:96:\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:99:\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:497;a:2:{i:0;a:6:{s:96:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:107:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:98:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:109:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:92:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:103:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}}i:1;a:2:{i:0;s:9:\"opacity:1\";i:1;s:18:\"visibility:visible\";}}i:498;a:2:{i:0;a:1:{s:141:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:12:\"margin:unset\";}}i:499;a:2:{i:0;a:2:{s:120:\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}s:121:\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:24:\"left:calc(20px - .907em)\";}}i:500;a:2:{i:0;a:4:{s:48:\".ast-mobile-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}s:49:\".ast-desktop-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}}i:1;a:5:{i:0;s:10:\"width:100%\";i:1;s:17:\"position:relative\";i:2;s:13:\"display:block\";i:3;s:10:\"right:auto\";i:4;s:14:\"transform:none\";}}i:501;a:2:{i:0;a:4:{s:74:\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}s:75:\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}}i:1;a:9:{i:0;s:7:\"right:0\";i:1;s:18:\"visibility:visible\";i:2;s:9:\"opacity:1\";i:3;s:17:\"position:relative\";i:4;s:8:\"top:auto\";i:5;s:14:\"transform:none\";i:6;s:9:\"padding:0\";i:7;s:13:\"display:block\";i:8;s:15:\"overflow:hidden\";}}i:502;a:2:{i:0;a:4:{s:80:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:62:\".ast-mobile-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}s:81:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:63:\".ast-desktop-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:19:\"padding-right:5.5em\";}}i:503;a:2:{i:0;a:2:{s:63:\".ast-mobile-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}s:64:\".ast-desktop-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}}i:1;a:7:{i:0;s:13:\"display:block\";i:1;s:17:\"position:absolute\";i:2;s:11:\"height:100%\";i:3;s:5:\"top:0\";i:4;s:7:\"right:0\";i:5;s:13:\"padding:0 1em\";i:6;s:15:\"border-radius:0\";}}i:504;a:2:{i:0;a:1:{s:165:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\";a:2:{i:1;a:8:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:505;a:2:{i:0;a:1:{s:184:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:10:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-item\";i:8;s:9:\"menu-item\";i:9;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:506;a:2:{i:0;a:1:{s:55:\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:22:\"ast-mobile-popup-inner\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:507;a:2:{i:0;a:2:{s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:27:\".ast-desktop-header-content\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:508;a:2:{i:0;a:4:{s:29:\".ast-mobile-popup-content > *\";a:1:{i:1;a:1:{i:0;s:24:\"ast-mobile-popup-content\";}}s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:30:\".ast-desktop-popup-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-desktop-popup-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:15:\"padding-top:0px\";i:1;s:18:\"padding-bottom:0px\";}}i:509;a:2:{i:0;a:1:{s:53:\".content-align-flex-start .ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:26:\"justify-content:flex-start\";}}i:510;a:2:{i:0;a:1:{s:43:\".content-align-flex-start .main-header-menu\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:15:\"text-align:left\";}}i:511;a:2:{i:0;a:1:{s:50:\".ast-mobile-popup-drawer.active .menu-toggle-close\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:17:\"menu-toggle-close\";}}}i:1;a:1:{i:0;s:13:\"color:#3a3a3a\";}}i:512;a:2:{i:0;a:2:{s:47:\".ast-mobile-header-wrap .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}}s:49:\".ast-primary-header-bar .site-primary-header-wrap\";a:1:{i:1;a:2:{i:0;s:22:\"ast-primary-header-bar\";i:1;s:24:\"site-primary-header-wrap\";}}}i:1;a:1:{i:0;s:15:\"min-height:70px\";}}i:513;a:2:{i:0;a:1:{s:67:\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\";a:1:{i:1;a:4:{i:0;s:11:\"ast-desktop\";i:1;s:22:\"ast-primary-header-bar\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";}}}i:1;a:1:{i:0;s:16:\"line-height:70px\";}}i:514;s:25:\"@media (max-width:921px){\";i:515;a:2:{i:0;a:2:{s:57:\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}s:55:\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:20:\"ast-below-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}}i:1;a:2:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";}}i:516;s:1:\"}\";i:517;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:518;s:25:\"@media (min-width:922px){\";i:519;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:520;s:1:\"}\";i:521;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:522;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:523;s:25:\"@media (max-width:921px){\";i:524;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:525;s:1:\"}\";i:526;s:25:\"@media (max-width:544px){\";i:527;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:528;s:1:\"}\";i:529;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-trigger-minimal\";}}}i:1;a:3:{i:0;s:31:\"color:var(--ast-global-color-0)\";i:1;s:11:\"border:none\";i:2;s:22:\"background:transparent\";}}i:530;a:2:{i:0;a:1:{s:104:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:23:\"mobile-menu-toggle-icon\";i:2;s:14:\"ast-mobile-svg\";}}}i:1;a:3:{i:0;s:10:\"width:20px\";i:1;s:11:\"height:20px\";i:2;s:30:\"fill:var(--ast-global-color-0)\";}}i:531;a:2:{i:0;a:1:{s:94:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:16:\"mobile-menu-wrap\";i:2;s:11:\"mobile-menu\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:532;a:2:{i:0;a:1:{s:65:\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:533;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:534;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:535;a:2:{i:0;a:3:{s:58:\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\";a:1:{i:1;a:3:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:16:\"main-header-menu\";}}s:79:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}s:89:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:536;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:537;s:25:\"@media (max-width:921px){\";i:538;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:539;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:540;s:1:\"}\";i:541;s:25:\"@media (max-width:544px){\";i:542;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:543;s:1:\"}\";i:544;a:2:{i:0;a:1:{s:41:\".ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:2:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:545;s:25:\"@media (max-width:921px){\";i:546;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:547;s:1:\"}\";i:548;s:25:\"@media (max-width:544px){\";i:549;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:550;s:1:\"}\";i:551;a:2:{i:0;a:1:{s:20:\".comment-reply-title\";a:1:{i:1;a:1:{i:0;s:19:\"comment-reply-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:24px\";i:1;s:16:\"font-size:1.6rem\";}}i:552;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:4:{i:0;s:23:\"line-height:1.666666667\";i:1;s:31:\"color:var(--ast-global-color-0)\";i:2;s:14:\"font-size:12px\";i:3;s:15:\"font-size:.8rem\";}}i:553;a:2:{i:0;a:1:{s:44:\".ast-comment-list #cancel-comment-reply-link\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:2;a:1:{i:0;s:25:\"cancel-comment-reply-link\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:554;a:2:{i:0;a:1:{s:15:\".comments-title\";a:1:{i:1;a:1:{i:0;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:555;a:2:{i:0;a:1:{s:15:\".comments-title\";a:1:{i:1;a:1:{i:0;s:14:\"comments-title\";}}}i:1;a:2:{i:0;s:18:\"font-weight:normal\";i:1;s:20:\"word-wrap:break-word\";}}i:556;a:2:{i:0;a:1:{s:17:\".ast-comment-list\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}}}i:1;a:4:{i:0;s:8:\"margin:0\";i:1;s:20:\"word-wrap:break-word\";i:2;s:19:\"padding-bottom:.5em\";i:3;s:15:\"list-style:none\";}}i:557;a:2:{i:0;a:1:{s:20:\".ast-comment-list li\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:558;a:2:{i:0;a:1:{s:46:\".ast-comment-list .ast-comment-edit-reply-wrap\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:27:\"ast-comment-edit-reply-wrap\";}}}i:1;a:3:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:24:\"justify-content:flex-end\";}}i:559;a:2:{i:0;a:1:{s:32:\".ast-comment-list .ast-edit-link\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:13:\"ast-edit-link\";}}}i:1;a:1:{i:0;s:6:\"flex:1\";}}i:560;a:2:{i:0;a:1:{s:46:\".ast-comment-list .comment-awaiting-moderation\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:27:\"comment-awaiting-moderation\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:561;a:2:{i:0;a:1:{s:12:\".ast-comment\";a:1:{i:1;a:1:{i:0;s:11:\"ast-comment\";}}}i:1;a:1:{i:0;s:13:\"padding:1em 0\";}}i:562;a:2:{i:0;a:2:{s:25:\".ast-comment-info amp-img\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:26:\".ast-comment-info amp-anim\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"border-radius:50%\";}}i:563;a:2:{i:0;a:1:{s:27:\".ast-comment-cite-wrap cite\";a:2:{i:1;a:1:{i:0;s:21:\"ast-comment-cite-wrap\";}i:0;a:1:{i:0;s:4:\"cite\";}}}i:1;a:1:{i:0;s:17:\"font-style:normal\";}}i:564;a:2:{i:0;a:1:{s:20:\".comment-reply-title\";a:1:{i:1;a:1:{i:0;s:19:\"comment-reply-title\";}}}i:1;a:3:{i:0;s:15:\"padding-top:1em\";i:1;s:18:\"font-weight:normal\";i:2;s:16:\"line-height:1.65\";}}i:565;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:.5em\";}}i:566;a:2:{i:0;a:1:{s:14:\".comments-area\";a:1:{i:1;a:1:{i:0;s:13:\"comments-area\";}}}i:1;a:2:{i:0;s:25:\"border-top:1px solid #eee\";i:1;s:14:\"margin-top:2em\";}}i:567;a:2:{i:0;a:1:{s:36:\".comments-area .comment-form-comment\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:20:\"comment-form-comment\";}}}i:1;a:4:{i:0;s:10:\"width:100%\";i:1;s:11:\"border:none\";i:2;s:8:\"margin:0\";i:3;s:9:\"padding:0\";}}i:568;a:2:{i:0;a:3:{s:29:\".comments-area .comment-notes\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:13:\"comment-notes\";}}s:32:\".comments-area .comment-textarea\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:16:\"comment-textarea\";}}s:33:\".comments-area .form-allowed-tags\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:17:\"form-allowed-tags\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.5em\";}}i:569;a:2:{i:0;a:1:{s:27:\".comments-area .form-submit\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:11:\"form-submit\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:570;a:2:{i:0;a:2:{s:31:\".comments-area textarea#comment\";a:3:{i:1;a:1:{i:0;s:13:\"comments-area\";}i:2;a:1:{i:0;s:7:\"comment\";}i:0;a:1:{i:0;s:8:\"textarea\";}}s:55:\".comments-area .ast-comment-formwrap input[type=\"text\"]\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:20:\"ast-comment-formwrap\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:10:\"width:100%\";i:1;s:15:\"border-radius:0\";i:2;s:21:\"vertical-align:middle\";i:3;s:18:\"margin-bottom:10px\";}}i:571;a:2:{i:0;a:1:{s:27:\".comments-area .no-comments\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:11:\"no-comments\";}}}i:1;a:2:{i:0;s:15:\"margin-top:.5em\";i:1;s:18:\"margin-bottom:.5em\";}}i:572;a:2:{i:0;a:1:{s:29:\".comments-area p.logged-in-as\";a:2:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:12:\"logged-in-as\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:573;a:2:{i:0;a:1:{s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}}i:1;a:2:{i:0;s:21:\"background-color:#fff\";i:1;s:22:\"padding:1.2em 3.99em 0\";}}i:574;a:2:{i:0;a:1:{s:38:\".ast-separate-container .comments-area\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:575;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-comment-list\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:576;a:2:{i:0;a:1:{s:44:\".ast-separate-container .ast-comment-list li\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:577;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:18:\"padding:4em 6.67em\";i:1;s:17:\"margin-bottom:2em\";}}i:578;s:27:\"@media (max-width: 1200px){\";i:579;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"padding:3em 3.34em\";}}i:580;s:1:\"}\";i:581;a:2:{i:0;a:1:{s:65:\".ast-separate-container .ast-comment-list li.depth-1 .children li\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";i:3;s:8:\"children\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"li\";}}}i:1;a:3:{i:0;s:16:\"padding-bottom:0\";i:1;s:13:\"padding-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:582;a:2:{i:0;a:2:{s:65:\".ast-separate-container .ast-comment-list li.depth-1 .ast-comment\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";i:3;s:11:\"ast-comment\";}i:0;a:1:{i:0;s:2:\"li\";}}s:65:\".ast-separate-container .ast-comment-list li.depth-2 .ast-comment\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-2\";i:3;s:11:\"ast-comment\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"border-bottom:0\";}}i:583;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:15:\"comment-respond\";}}}i:1;a:3:{i:0;s:13:\"padding-top:0\";i:1;s:18:\"padding-bottom:1em\";i:2;s:28:\"background-color:transparent\";}}i:584;a:2:{i:0;a:1:{s:53:\".ast-separate-container .ast-comment-list .pingback p\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:8:\"pingback\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:585;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:2:{i:0;s:11:\"padding:2em\";i:1;s:17:\"margin-bottom:1em\";}}i:586;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .bypostauthor li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:3:{i:0;s:22:\"background:transparent\";i:1;s:15:\"margin-bottom:0\";i:2;s:17:\"padding:0 0 0 2em\";}}i:587;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:18:\"padding:4em 6.67em\";i:2;s:15:\"border-bottom:0\";}}i:588;s:27:\"@media (max-width: 1200px){\";i:589;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:3em 2.34em\";}}i:590;s:1:\"}\";i:591;a:2:{i:0;a:1:{s:44:\".ast-separate-container .comment-reply-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:19:\"comment-reply-title\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:592;a:2:{i:0;a:1:{s:18:\".comment-content a\";a:2:{i:1;a:1:{i:0;s:15:\"comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"word-wrap:break-word\";}}i:593;a:2:{i:0;a:1:{s:20:\".comment-form-legend\";a:1:{i:1;a:1:{i:0;s:19:\"comment-form-legend\";}}}i:1;a:2:{i:0;s:19:\"margin-bottom:unset\";i:1;s:14:\"padding:0 .5em\";}}i:594;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:15:\"margin-left:2em\";}}i:595;s:26:\"@media (max-width: 992px){\";i:596;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:15:\"margin-left:1em\";}}i:597;s:1:\"}\";i:598;a:2:{i:0;a:1:{s:44:\".ast-comment-list #cancel-comment-reply-link\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:2;a:1:{i:0;s:25:\"cancel-comment-reply-link\";}}}i:1;a:4:{i:0;s:18:\"white-space:nowrap\";i:1;s:14:\"font-size:15px\";i:2;s:14:\"font-size:1rem\";i:3;s:15:\"margin-left:1em\";}}i:599;a:2:{i:0;a:1:{s:17:\".ast-comment-info\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:17:\"position:relative\";}}i:600;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:2:{i:0;s:21:\"justify-content:right\";i:1;s:21:\"padding:0 3.4em 1.6em\";}}i:601;a:2:{i:0;a:1:{s:28:\".ast-comment-time .timendate\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-time\";i:1;s:9:\"timendate\";}}}i:1;a:1:{i:0;s:17:\"margin-right:.5em\";}}i:602;a:2:{i:0;a:1:{s:42:\".comments-area #wp-comment-cookies-consent\";a:2:{i:1;a:1:{i:0;s:13:\"comments-area\";}i:2;a:1:{i:0;s:26:\"wp-comment-cookies-consent\";}}}i:1;a:1:{i:0;s:17:\"margin-right:10px\";}}i:603;a:2:{i:0;a:1:{s:41:\".ast-page-builder-template .comments-area\";a:1:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"comments-area\";}}}i:1;a:4:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";i:2;s:12:\"margin-top:0\";i:3;s:17:\"margin-bottom:2em\";}}i:604;a:2:{i:0;a:1:{s:69:\".ast-separate-container .ast-comment-list .bypostauthor .bypostauthor\";a:1:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";i:3;s:12:\"bypostauthor\";}}}i:1;a:5:{i:0;s:22:\"background:transparent\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding-right:0\";i:3;s:16:\"padding-bottom:0\";i:4;s:13:\"padding-top:0\";}}i:605;s:25:\"@media (min-width:922px){\";i:606;a:2:{i:0;a:1:{s:61:\".ast-separate-container .ast-comment-list li .comment-respond\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:15:\"comment-respond\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:22:\"padding-left:2.66666em\";i:1;s:23:\"padding-right:2.66666em\";}}i:607;s:1:\"}\";i:608;s:25:\"@media (max-width:544px){\";i:609;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:610;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:611;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:612;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .bypostauthor li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"padding:0 0 0 .5em\";}}i:613;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:20:\"margin-left:.66666em\";}}i:614;s:1:\"}\";i:615;s:25:\"@media (max-width:921px){\";i:616;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:617;a:2:{i:0;a:1:{s:14:\".comments-area\";a:1:{i:1;a:1:{i:0;s:13:\"comments-area\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:618;a:2:{i:0;a:1:{s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:21:\"padding:1.43em 1.48em\";}}i:619;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:620;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:621;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:622;a:2:{i:0;a:1:{s:24:\".ast-comment-avatar-wrap\";a:1:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}}}i:1;a:1:{i:0;s:17:\"margin-right:.5em\";}}i:623;s:1:\"}\";}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"543d9be378ad6e36435ce92a1ab60206\";s:10:\"parse_time\";d:0.09421706199645996;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160253,'_transient_timeout_amp-parsed-stylesheet-v40-7d4cb4f4a574d45fed6b0d77db091e26','1762096991','off'),
(160254,'_transient_amp-parsed-stylesheet-v40-7d4cb4f4a574d45fed6b0d77db091e26','a:8:{s:6:\"tokens\";a:192:{i:0;s:14:\"@media screen{\";i:1;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:8:{i:0;s:11:\"height:100%\";i:1;s:13:\"font-size:1em\";i:2;s:14:\"font-size:100%\";i:3;s:15:\"line-height:1.4\";i:4;s:8:\"margin:0\";i:5;s:9:\"padding:0\";i:6;s:8:\"border:0\";i:7;s:23:\"vertical-align:baseline\";}}i:2;a:2:{i:0;a:1:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:7:{i:0;s:8:\"margin:0\";i:1;s:14:\"font-size:14px\";i:2;s:15:\"line-height:1.5\";i:3;s:19:\"letter-spacing:.1px\";i:4;s:10:\"color:#fff\";i:5;s:18:\"background:#020000\";i:6;s:36:\"font-family:\"digital_sans_ef_medium\"\";}}i:3;a:2:{i:0;a:3:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:4:{i:0;s:13:\"color:#11a54f\";i:1;s:15:\"line-height:1.2\";i:2;s:15:\"margin:15px 0px\";i:3;s:15:\"font-weight:500\";}}i:4;a:2:{i:0;a:1:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:5;a:2:{i:0;a:1:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:27px\";}}i:6;a:2:{i:0;a:1:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:23px\";}}i:7;a:2:{i:0;a:1:{s:1:\"*\";a:0:{}}i:1;a:3:{i:0;s:29:\"-webkit-box-sizing:border-box\";i:1;s:26:\"-moz-box-sizing:border-box\";i:2;s:21:\"box-sizing:border-box\";}}i:8;a:2:{i:0;a:1:{s:1:\"a\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:13:\"color:#11a54f\";i:1;s:20:\"text-decoration:none\";}}i:9;a:2:{i:0;a:1:{s:7:\"a:hover\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:10;a:2:{i:0;a:3:{s:3:\"div\";a:1:{i:0;a:1:{i:0;s:3:\"div\";}}s:5:\"input\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:5:\"label\";a:1:{i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:3:{i:0;s:13:\"display:block\";i:1;s:15:\"overflow:hidden\";i:2;s:17:\"position:relative\";}}i:11;a:2:{i:0;a:1:{s:6:\"strong\";a:1:{i:0;a:1:{i:0;s:6:\"strong\";}}}i:1;a:1:{i:0;s:13:\"color:#11a54f\";}}i:12;a:2:{i:0;a:2:{s:7:\"amp-img\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:8:\"amp-anim\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:11:\"height:100%\";i:2;s:19:\"pointer-events:none\";}}i:13;a:2:{i:0;a:2:{s:9:\"a amp-img\";a:1:{i:0;a:2:{i:0;s:1:\"a\";i:1;s:7:\"amp-img\";}}s:10:\"a amp-anim\";a:1:{i:0;a:2:{i:0;s:1:\"a\";i:1;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:22:\"pointer-events:visible\";}}i:14;a:2:{i:0;a:1:{s:20:\".entry-content ol li\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:2:{i:0;s:2:\"ol\";i:1;s:2:\"li\";}}}i:1;a:4:{i:0;s:18:\"list-style:decimal\";i:1;s:15:\"padding:5px 0px\";i:2;s:17:\"display:list-item\";i:3;s:10:\"float:none\";}}i:15;a:2:{i:0;a:1:{s:7:\".mobile\";a:1:{i:1;a:1:{i:0;s:6:\"mobile\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:16;s:2078:\"@font-face{font-family:\"digital_sans_ef_medium\";src:url(\"webfonts/digital_sans_ef_medium.woff2\") format(\"woff2\"),url(\"webfonts/digital_sans_ef_medium.woff\") format(\"woff\");font-weight:normal;font-style:normal}@font-face{font-family:\"advanced_dot_digital7\";src:url(\"webfonts/advanced_dot_digital7.eot\");src:url(\"webfonts/advanced_dot_digital7.eot\") format(\"embedded-opentype\"),url(\"webfonts/advanced_dot_digital7.woff2\") format(\"woff2\"),url(\"webfonts/advanced_dot_digital7.woff\") format(\"woff\"),url(\"webfonts/advanced_dot_digital7.ttf\") format(\"truetype\"),url(\"webfonts/advanced_dot_digital7.svg#advanced_dot_digital7\") format(\"svg\")}@font-face{font-family:\"Font Awesome 5 Brands\";font-style:normal;font-weight:normal;font-display:auto;src:url(\"webfonts/fa-brands-400.eot\");src:url(\"webfonts/fa-brands-400.eot#iefix\") format(\"embedded-opentype\"),url(\"webfonts/fa-brands-400.woff2\") format(\"woff2\"),url(\"webfonts/fa-brands-400.woff\") format(\"woff\"),url(\"webfonts/fa-brands-400.ttf\") format(\"truetype\"),url(\"webfonts/fa-brands-400.svg#fontawesome\") format(\"svg\")}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;font-display:auto;src:url(\"webfonts/fa-regular-400.eot\");src:url(\"webfonts/fa-regular-400.eot#iefix\") format(\"embedded-opentype\"),url(\"webfonts/fa-regular-400.woff2\") format(\"woff2\"),url(\"webfonts/fa-regular-400.woff\") format(\"woff\"),url(\"webfonts/fa-regular-400.ttf\") format(\"truetype\"),url(\"webfonts/fa-regular-400.svg#fontawesome\") format(\"svg\")}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:900;font-display:auto;src:url(\"webfonts/fa-solid-900.eot\");src:url(\"webfonts/fa-solid-900.eot#iefix\") format(\"embedded-opentype\"),url(\"webfonts/fa-solid-900.woff2\") format(\"woff2\"),url(\"webfonts/fa-solid-900.woff\") format(\"woff\"),url(\"webfonts/fa-solid-900.ttf\") format(\"truetype\"),url(\"webfonts/fa-solid-900.svg#fontawesome\") format(\"svg\")}@font-face{font-family:\"LatoWeb\";src:url(\"webfonts/Lato-Regular.woff2\") format(\"woff2\"),url(\"webfonts/Lato-Regular.woff\") format(\"woff\");font-weight:normal;font-style:normal}\";i:17;a:2:{i:0;a:1:{s:9:\".svg-menu\";a:1:{i:1;a:1:{i:0;s:8:\"svg-menu\";}}}i:1;a:5:{i:0;s:11:\"height:20px\";i:1;s:10:\"width:20px\";i:2;s:20:\"display:inline-block\";i:3;s:20:\"background-size:18px\";i:4;s:27:\"background-repeat:no-repeat\";}}i:18;a:2:{i:0;a:1:{s:12:\".svg-beranda\";a:1:{i:1;a:1:{i:0;s:11:\"svg-beranda\";}}}i:1;a:1:{i:0;s:102:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-beranda.png\")\";}}i:19;a:2:{i:0;a:1:{s:12:\".svg-content\";a:1:{i:1;a:1:{i:0;s:11:\"svg-content\";}}}i:1;a:5:{i:0;s:20:\"display:inline-block\";i:1;s:10:\"width:25px\";i:2;s:11:\"height:20px\";i:3;s:20:\"background-size:21px\";i:4;s:27:\"background-repeat:no-repeat\";}}i:20;a:2:{i:0;a:1:{s:10:\".svg-sport\";a:1:{i:1;a:1:{i:0;s:9:\"svg-sport\";}}}i:1;a:1:{i:0;s:101:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-sports.png\")\";}}i:21;a:2:{i:0;a:1:{s:11:\".svg-casino\";a:1:{i:1;a:1:{i:0;s:10:\"svg-casino\";}}}i:1;a:1:{i:0;s:101:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-casino.png\")\";}}i:22;a:2:{i:0;a:1:{s:10:\".svg-slots\";a:1:{i:1;a:1:{i:0;s:9:\"svg-slots\";}}}i:1;a:1:{i:0;s:100:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-slots.png\")\";}}i:23;a:2:{i:0;a:1:{s:10:\".svg-togel\";a:1:{i:1;a:1:{i:0;s:9:\"svg-togel\";}}}i:1;a:1:{i:0;s:100:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-togel.png\")\";}}i:24;a:2:{i:0;a:1:{s:12:\".svg-fishing\";a:1:{i:1;a:1:{i:0;s:11:\"svg-fishing\";}}}i:1;a:1:{i:0;s:102:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-fishing.png\")\";}}i:25;a:2:{i:0;a:1:{s:10:\".svg-poker\";a:1:{i:1;a:1:{i:0;s:9:\"svg-poker\";}}}i:1;a:1:{i:0;s:95:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/poker.png\")\";}}i:26;a:2:{i:0;a:1:{s:9:\".svg-gift\";a:1:{i:1;a:1:{i:0;s:8:\"svg-gift\";}}}i:1;a:1:{i:0;s:99:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-gift.png\")\";}}i:27;a:2:{i:0;a:1:{s:8:\".svg-new\";a:1:{i:1;a:1:{i:0;s:7:\"svg-new\";}}}i:1;a:1:{i:0;s:98:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-new.svg\")\";}}i:28;a:2:{i:0;a:1:{s:12:\".svg-populer\";a:1:{i:1;a:1:{i:0;s:11:\"svg-populer\";}}}i:1;a:1:{i:0;s:102:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-populer.svg\")\";}}i:29;a:2:{i:0;a:1:{s:10:\".svg-gacor\";a:1:{i:1;a:1:{i:0;s:9:\"svg-gacor\";}}}i:1;a:1:{i:0;s:100:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-gacor.svg\")\";}}i:30;a:2:{i:0;a:1:{s:13:\".svg-whatsapp\";a:1:{i:1;a:1:{i:0;s:12:\"svg-whatsapp\";}}}i:1;a:1:{i:0;s:103:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-whatsapp.png\")\";}}i:31;a:2:{i:0;a:1:{s:13:\".svg-telegram\";a:1:{i:1;a:1:{i:0;s:12:\"svg-telegram\";}}}i:1;a:1:{i:0;s:103:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-telegram.png\")\";}}i:32;a:2:{i:0;a:1:{s:10:\".svg-login\";a:1:{i:1;a:1:{i:0;s:9:\"svg-login\";}}}i:1;a:1:{i:0;s:95:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/login.png\")\";}}i:33;a:2:{i:0;a:1:{s:13:\".svg-livechat\";a:1:{i:1;a:1:{i:0;s:12:\"svg-livechat\";}}}i:1;a:1:{i:0;s:103:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-livechat.png\")\";}}i:34;a:2:{i:0;a:1:{s:18:\".svg-whatsapp-gray\";a:1:{i:1;a:1:{i:0;s:17:\"svg-whatsapp-gray\";}}}i:1;a:1:{i:0;s:108:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-whatsapp-gray.png\")\";}}i:35;a:2:{i:0;a:1:{s:18:\".svg-telegram-gray\";a:1:{i:1;a:1:{i:0;s:17:\"svg-telegram-gray\";}}}i:1;a:1:{i:0;s:108:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-telegram-gray.png\")\";}}i:36;a:2:{i:0;a:1:{s:18:\".svg-livechat-gray\";a:1:{i:1;a:1:{i:0;s:17:\"svg-livechat-gray\";}}}i:1;a:1:{i:0;s:108:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-livechat-gray.svg\")\";}}i:37;a:2:{i:0;a:1:{s:10:\".svg-unduh\";a:1:{i:1;a:1:{i:0;s:9:\"svg-unduh\";}}}i:1;a:1:{i:0;s:100:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/icon-unduh.png\")\";}}i:38;a:2:{i:0;a:1:{s:8:\".svg-hot\";a:1:{i:1;a:1:{i:0;s:7:\"svg-hot\";}}}i:1;a:1:{i:0;s:99:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/icon/hot-games.png\")\";}}i:39;a:2:{i:0;a:1:{s:7:\".header\";a:1:{i:1;a:1:{i:0;s:6:\"header\";}}}i:1;a:4:{i:0;s:10:\"width:100%\";i:1;s:14:\"z-index:999999\";i:2;s:14:\"position:fixed\";i:3;s:18:\"background:#191919\";}}i:40;a:2:{i:0;a:1:{s:9:\".top-left\";a:1:{i:1;a:1:{i:0;s:8:\"top-left\";}}}i:1;a:4:{i:0;s:10:\"float:left\";i:1;s:9:\"width:27%\";i:2;s:12:\"display:flex\";i:3;s:26:\"justify-content:flex-start\";}}i:41;a:2:{i:0;a:1:{s:10:\".top-right\";a:1:{i:1;a:1:{i:0;s:9:\"top-right\";}}}i:1;a:4:{i:0;s:15:\"line-height:1.2\";i:1;s:14:\"font-size:11px\";i:2;s:11:\"float:right\";i:3;s:9:\"width:70%\";}}i:42;a:2:{i:0;a:1:{s:10:\".site-logo\";a:1:{i:1;a:1:{i:0;s:9:\"site-logo\";}}}i:1;a:4:{i:0;s:10:\"float:left\";i:1;s:8:\"top:12px\";i:2;s:8:\"left:0px\";i:3;s:9:\"width:24%\";}}i:43;a:2:{i:0;a:2:{s:18:\".site-logo amp-img\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:19:\".site-logo amp-anim\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:11:\"width:200px\";}}i:44;a:2:{i:0;a:1:{s:8:\".nav-bar\";a:1:{i:1;a:1:{i:0;s:7:\"nav-bar\";}}}i:1;a:2:{i:0;s:61:\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\";i:1;s:28:\"border-top:1px solid #2b2b2b\";}}i:45;a:2:{i:0;a:1:{s:7:\".sticky\";a:1:{i:1;a:1:{i:0;s:6:\"sticky\";}}}i:1;a:1:{i:0;s:12:\"height:127px\";}}i:46;a:2:{i:0;a:1:{s:5:\".main\";a:1:{i:1;a:1:{i:0;s:4:\"main\";}}}i:1;a:1:{i:0;s:18:\"background:#191919\";}}i:47;a:2:{i:0;a:1:{s:6:\".slide\";a:1:{i:1;a:1:{i:0;s:5:\"slide\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:17px\";}}i:48;a:2:{i:0;a:2:{s:16:\".jackpot amp-img\";a:2:{i:1;a:1:{i:0;s:7:\"jackpot\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:17:\".jackpot amp-anim\";a:2:{i:1;a:1:{i:0;s:7:\"jackpot\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:4:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";i:2;s:13:\"display:block\";i:3;s:17:\"border-radius:9px\";}}i:49;a:2:{i:0;a:1:{s:10:\".container\";a:1:{i:1;a:1:{i:0;s:9:\"container\";}}}i:1;a:4:{i:0;s:16:\"max-width:1170px\";i:1;s:10:\"width:100%\";i:2;s:11:\"margin:auto\";i:3;s:15:\"overflow:hidden\";}}i:50;a:2:{i:0;a:1:{s:4:\".row\";a:1:{i:1;a:1:{i:0;s:3:\"row\";}}}i:1;a:6:{i:0;s:10:\"width:100%\";i:1;s:11:\"height:100%\";i:2;s:19:\"display:-ms-flexbox\";i:3;s:12:\"display:flex\";i:4;s:18:\"-ms-flex-wrap:wrap\";i:5;s:14:\"flex-wrap:wrap\";}}i:51;a:2:{i:0;a:1:{s:9:\".col-sm-2\";a:1:{i:1;a:1:{i:0;s:8:\"col-sm-2\";}}}i:1;a:5:{i:0;s:14:\"flex:0 0 15.9%\";i:1;s:15:\"max-width:15.9%\";i:2;s:14:\"margin:5px 4px\";i:3;s:22:\"justify-content:center\";i:4;s:20:\"align-content:center\";}}i:52;a:2:{i:0;a:1:{s:10:\".col-sm-12\";a:1:{i:1;a:1:{i:0;s:9:\"col-sm-12\";}}}i:1;a:3:{i:0;s:17:\"-ms-flex:0 0 100%\";i:1;s:13:\"flex:0 0 100%\";i:2;s:14:\"max-width:100%\";}}i:53;a:2:{i:0;a:1:{s:10:\".col-title\";a:1:{i:1;a:1:{i:0;s:9:\"col-title\";}}}i:1;a:6:{i:0;s:15:\"padding:9px 0px\";i:1;s:17:\"position:absolute\";i:2;s:9:\"top:-14px\";i:3;s:9:\"left:21px\";i:4;s:9:\"z-index:2\";i:5;s:18:\"background:#101013\";}}i:54;a:2:{i:0;a:1:{s:11:\".col-border\";a:1:{i:1;a:1:{i:0;s:10:\"col-border\";}}}i:1;a:4:{i:0;s:21:\"border:1px solid #333\";i:1;s:17:\"border-radius:7px\";i:2;s:15:\"margin:5px auto\";i:3;s:12:\"padding:18px\";}}i:55;a:2:{i:0;a:1:{s:19:\".payment .col-sm-12\";a:1:{i:1;a:2:{i:0;s:7:\"payment\";i:1;s:9:\"col-sm-12\";}}}i:1;a:1:{i:0;s:16:\"margin:10px auto\";}}i:56;a:2:{i:0;a:1:{s:16:\".post-taxonomies\";a:1:{i:1;a:1:{i:0;s:15:\"post-taxonomies\";}}}i:1;a:1:{i:0;s:14:\"padding:20px 0\";}}i:57;a:2:{i:0;a:1:{s:27:\".post-taxonomies .container\";a:1:{i:1;a:2:{i:0;s:15:\"post-taxonomies\";i:1;s:9:\"container\";}}}i:1;a:1:{i:0;s:28:\"border-bottom:1px solid #333\";}}i:58;a:2:{i:0;a:1:{s:11:\".tags-title\";a:1:{i:1;a:1:{i:0;s:10:\"tags-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:19px\";}}i:59;a:2:{i:0;a:2:{s:11:\".tags-title\";a:1:{i:1;a:1:{i:0;s:10:\"tags-title\";}}s:11:\".tags-links\";a:1:{i:1;a:1:{i:0;s:10:\"tags-links\";}}}i:1;a:2:{i:0;s:17:\"text-align:center\";i:1;s:14:\"padding:10px 0\";}}i:60;a:2:{i:0;a:1:{s:13:\".tags-links a\";a:2:{i:1;a:1:{i:0;s:10:\"tags-links\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:5:{i:0;s:18:\"background:#503000\";i:1;s:20:\"display:inline-block\";i:2;s:17:\"border-radius:8px\";i:3;s:17:\"padding:15px 20px\";i:4;s:10:\"color:#fff\";}}i:61;a:2:{i:0;a:1:{s:12:\".main-menu i\";a:2:{i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:1:{i:0;s:1:\"i\";}}}i:1;a:5:{i:0;s:13:\"display:block\";i:1;s:11:\"margin:auto\";i:2;s:10:\"width:30px\";i:3;s:11:\"height:30px\";i:4;s:20:\"background-size:26px\";}}i:62;a:2:{i:0;a:3:{s:7:\"ul.menu\";a:2:{i:1;a:1:{i:0;s:4:\"menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:13:\"ul.contact-us\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:12:\"ul.main-menu\";a:2:{i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:3:{i:0;s:9:\"padding:0\";i:1;s:8:\"margin:0\";i:2;s:24:\"text-transform:uppercase\";}}i:63;a:2:{i:0;a:1:{s:10:\".main-menu\";a:1:{i:1;a:1:{i:0;s:9:\"main-menu\";}}}i:1;a:1:{i:0;s:11:\"float:right\";}}i:64;a:2:{i:0;a:2:{s:28:\".main-menu li [aria-current]\";a:3:{i:3;a:1:{i:0;s:12:\"aria-current\";}i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:1:{i:0;s:2:\"li\";}}s:21:\".main-menu li a:hover\";a:2:{i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#11a54f\";}}i:65;a:2:{i:0;a:1:{s:13:\".main-menu li\";a:2:{i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:5:{i:0;s:17:\"position:relative\";i:1;s:13:\"display:block\";i:2;s:10:\"float:left\";i:3;s:8:\"margin:0\";i:4;s:9:\"padding:0\";}}i:66;a:2:{i:0;a:1:{s:15:\".main-menu li a\";a:2:{i:1;a:1:{i:0;s:9:\"main-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:7:{i:0;s:14:\"font-size:14px\";i:1;s:17:\"position:relative\";i:2;s:20:\"display:inline-block\";i:3;s:16:\"line-height:18px\";i:4;s:17:\"padding:20px 24px\";i:5;s:6:\"flex:1\";i:6;s:13:\"color:#a3a3a3\";}}i:67;a:2:{i:0;a:1:{s:13:\"ul.contact-us\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:2:{i:0;s:14:\"padding:15px 0\";i:1;s:25:\"text-transform:capitalize\";}}i:68;a:2:{i:0;a:1:{s:11:\".contact-us\";a:1:{i:1;a:1:{i:0;s:10:\"contact-us\";}}}i:1;a:2:{i:0;s:11:\"float:right\";i:1;s:11:\"height:36px\";}}i:69;a:2:{i:0;a:1:{s:14:\".contact-us li\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:5:{i:0;s:28:\"border-right:dotted 1px #fff\";i:1;s:17:\"padding-left:10px\";i:2;s:18:\"padding-right:10px\";i:3;s:20:\"display:inline-block\";i:4;s:10:\"float:left\";}}i:70;a:2:{i:0;a:1:{s:12:\".site-footer\";a:1:{i:1;a:1:{i:0;s:11:\"site-footer\";}}}i:1;a:4:{i:0;s:13:\"display:block\";i:1;s:11:\"margin:auto\";i:2;s:15:\"max-width:200px\";i:3;s:18:\"margin-bottom:20px\";}}i:71;a:2:{i:0;a:1:{s:26:\".contact-us li:first-child\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:18:\"padding-right:10px\";i:1;s:13:\"border-left:0\";}}i:72;a:2:{i:0;a:1:{s:25:\".contact-us li:last-child\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:18:\"padding-right:10px\";i:1;s:14:\"border-right:0\";}}i:73;a:2:{i:0;a:1:{s:16:\".contact-us li a\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:2:{i:0;s:13:\"color:#9a9a9a\";i:1;s:14:\"font-size:11px\";}}i:74;a:2:{i:0;a:1:{s:22:\".contact-us li a:hover\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:13:\"color:#11a54f\";}}i:75;a:2:{i:0;a:1:{s:21:\".contact-us .svg-menu\";a:1:{i:1;a:2:{i:0;s:10:\"contact-us\";i:1;s:8:\"svg-menu\";}}}i:1;a:5:{i:0;s:11:\"height:20px\";i:1;s:10:\"width:20px\";i:2;s:20:\"display:inline-block\";i:3;s:20:\"background-size:17px\";i:4;s:27:\"background-repeat:no-repeat\";}}i:76;a:2:{i:0;a:1:{s:16:\".contact-us li i\";a:2:{i:1;a:1:{i:0;s:10:\"contact-us\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"i\";}}}i:1;a:1:{i:0;s:21:\"vertical-align:middle\";}}i:77;a:2:{i:0;a:1:{s:13:\".quick-footer\";a:1:{i:1;a:1:{i:0;s:12:\"quick-footer\";}}}i:1;a:9:{i:0;s:14:\"position:fixed\";i:1;s:11:\"width:170px\";i:2;s:11:\"height:40px\";i:3;s:10:\"bottom:0px\";i:4;s:10:\"right:10px\";i:5;s:18:\"background:#e8911a\";i:6;s:29:\"border-radius:5px 5px 0px 0px\";i:7;s:11:\"z-index:100\";i:8;s:11:\"padding:2px\";}}i:78;a:2:{i:0;a:1:{s:15:\".quick-footer i\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:1:{i:0;s:1:\"i\";}}}i:1;a:4:{i:0;s:14:\"font-size:22px\";i:1;s:17:\"position:relative\";i:2;s:11:\"right:-42px\";i:3;s:8:\"top:-2px\";}}i:79;a:2:{i:0;a:1:{s:16:\".quick-footer li\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:15:\"margin:1px auto\";i:1;s:16:\"padding:4px 12px\";}}i:80;a:2:{i:0;a:1:{s:18:\".quick-footer li a\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:6:{i:0;s:10:\"color:#fff\";i:1;s:12:\"display:flex\";i:2;s:15:\"align-items:end\";i:3;s:17:\"text-align:center\";i:4;s:14:\"font-size:19px\";i:5;s:24:\"text-transform:uppercase\";}}i:81;a:2:{i:0;a:1:{s:18:\".quick-footer li i\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"i\";}}}i:1;a:1:{i:0;s:21:\"vertical-align:middle\";}}i:82;a:2:{i:0;a:1:{s:23:\".quick-footer .svg-menu\";a:1:{i:1;a:2:{i:0;s:12:\"quick-footer\";i:1;s:8:\"svg-menu\";}}}i:1;a:5:{i:0;s:11:\"height:30px\";i:1;s:10:\"width:30px\";i:2;s:20:\"display:inline-block\";i:3;s:20:\"background-size:30px\";i:4;s:27:\"background-repeat:no-repeat\";}}i:83;a:2:{i:0;a:1:{s:5:\".menu\";a:1:{i:1;a:1:{i:0;s:4:\"menu\";}}}i:1;a:4:{i:0;s:11:\"float:right\";i:1;s:17:\"position:relative\";i:2;s:11:\"padding:0px\";i:3;s:15:\"margin:0px auto\";}}i:84;a:2:{i:0;a:1:{s:8:\".menu li\";a:2:{i:1;a:1:{i:0;s:4:\"menu\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:10:{i:0;s:10:\"float:left\";i:1;s:17:\"position:relative\";i:2;s:14:\"font-size:14px\";i:3;s:24:\"text-transform:uppercase\";i:4;s:14:\"min-width:68px\";i:5;s:22:\"margin:0px 0px 0px 4px\";i:6;s:17:\"text-align:center\";i:7;s:15:\"padding:5px 5px\";i:8;s:22:\"vertical-align:inherit\";i:9;s:18:\"border-radius:27px\";}}i:85;a:2:{i:0;a:1:{s:8:\".menu ul\";a:2:{i:1;a:1:{i:0;s:4:\"menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:6:{i:0;s:16:\"padding-top:15px\";i:1;s:29:\"border-radius:0px 0px 4px 4px\";i:2;s:37:\"-webkit-border-radius:0px 0px 4px 4px\";i:3;s:34:\"-moz-border-radius:0px 0px 4px 4px\";i:4;s:33:\"-ms-border-radius:0px 0px 4px 4px\";i:5;s:32:\"-o-border-radius:0px 0px 4px 4px\";}}i:86;a:2:{i:0;a:1:{s:10:\".menu li a\";a:2:{i:1;a:1:{i:0;s:4:\"menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:4:{i:0;s:16:\"padding:4px 21px\";i:1;s:13:\"display:block\";i:2;s:10:\"color:#fff\";i:3;s:28:\"text-shadow:0px 0px 3px #000\";}}i:87;a:2:{i:0;a:2:{s:7:\".daftar\";a:1:{i:1;a:1:{i:0;s:6:\"daftar\";}}s:13:\".quick-footer\";a:1:{i:1;a:1:{i:0;s:12:\"quick-footer\";}}}i:1;a:2:{i:0;s:70:\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\";i:1;s:28:\"border-top:1px solid #11a54f\";}}i:88;a:2:{i:0;a:1:{s:13:\".daftar:hover\";a:1:{i:1;a:1:{i:0;s:6:\"daftar\";}}}i:1;a:2:{i:0;s:18:\"background:#115f13\";i:1;s:84:\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\";}}i:89;a:2:{i:0;a:1:{s:6:\".login\";a:1:{i:1;a:1:{i:0;s:5:\"login\";}}}i:1;a:2:{i:0;s:18:\"background:#505050\";i:1;s:28:\"border-top:1px solid #7e7e7e\";}}i:90;a:2:{i:0;a:1:{s:12:\".login:hover\";a:1:{i:1;a:1:{i:0;s:5:\"login\";}}}i:1;a:2:{i:0;s:18:\"background:#00490c\";i:1;s:66:\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\";}}i:91;a:2:{i:0;a:1:{s:4:\".rtp\";a:1:{i:1;a:1:{i:0;s:3:\"rtp\";}}}i:1;a:3:{i:0;s:18:\"background:#505050\";i:1;s:56:\"background-image:linear-gradient(to bottom,#0ef,#001aff)\";i:2;s:28:\"border-top:1px solid #7e7e7e\";}}i:92;a:2:{i:0;a:1:{s:10:\".rtp:hover\";a:1:{i:1;a:1:{i:0;s:3:\"rtp\";}}}i:1;a:2:{i:0;s:18:\"background:#00490c\";i:1;s:66:\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\";}}i:93;a:2:{i:0;a:1:{s:11:\".alternatif\";a:1:{i:1;a:1:{i:0;s:10:\"alternatif\";}}}i:1;a:3:{i:0;s:18:\"background:#c8ff00\";i:1;s:59:\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\";i:2;s:28:\"border-top:1px solid #7e7e7e\";}}i:94;a:2:{i:0;a:1:{s:17:\".alternatif:hover\";a:1:{i:1;a:1:{i:0;s:10:\"alternatif\";}}}i:1;a:2:{i:0;s:18:\"background:#00490c\";i:1;s:69:\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\";}}i:95;a:2:{i:0;a:1:{s:12:\".login-panel\";a:1:{i:1;a:1:{i:0;s:11:\"login-panel\";}}}i:1;a:1:{i:0;s:12:\"margin:6px 0\";}}i:96;a:2:{i:0;a:2:{s:2:\"ul\";a:1:{i:0;a:1:{i:0;s:2:\"ul\";}}s:2:\"ol\";a:1:{i:0;a:1:{i:0;s:2:\"ol\";}}}i:1;a:3:{i:0;s:15:\"list-style:none\";i:1;s:8:\"margin:0\";i:2;s:15:\"padding:5px 0px\";}}i:97;a:2:{i:0;a:1:{s:10:\"ul.article\";a:2:{i:1;a:1:{i:0;s:7:\"article\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:2:{i:0;s:17:\"list-style:circle\";i:1;s:16:\"padding:5px 30px\";}}i:98;a:2:{i:0;a:1:{s:11:\".article li\";a:2:{i:1;a:1:{i:0;s:7:\"article\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:15:\"list-style:disc\";i:1;s:15:\"margin:0px 35px\";}}i:99;a:2:{i:0;a:1:{s:14:\".article ol li\";a:2:{i:1;a:1:{i:0;s:7:\"article\";}i:0;a:2:{i:0;s:2:\"ol\";i:1;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"list-style:decimal\";}}i:100;a:2:{i:0;a:5:{s:11:\".ct-rounded\";a:1:{i:1;a:1:{i:0;s:10:\"ct-rounded\";}}s:19:\".ct-rounded amp-img\";a:2:{i:1;a:1:{i:0;s:10:\"ct-rounded\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:20:\".ct-rounded amp-anim\";a:2:{i:1;a:1:{i:0;s:10:\"ct-rounded\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:21:\".ct-rounded .col-sm-2\";a:1:{i:1;a:2:{i:0;s:10:\"ct-rounded\";i:1;s:8:\"col-sm-2\";}}s:22:\".bg-rounded .container\";a:1:{i:1;a:2:{i:0;s:10:\"bg-rounded\";i:1;s:9:\"container\";}}}i:1;a:1:{i:0;s:18:\"border-radius:12px\";}}i:101;a:2:{i:0;a:1:{s:22:\".bg-rounded .container\";a:1:{i:1;a:2:{i:0;s:10:\"bg-rounded\";i:1;s:9:\"container\";}}}i:1;a:3:{i:0;s:12:\"padding:25px\";i:1;s:18:\"background:#020206\";i:2;s:18:\"margin-bottom:30px\";}}i:102;a:2:{i:0;a:1:{s:11:\".ct-rounded\";a:1:{i:1;a:1:{i:0;s:10:\"ct-rounded\";}}}i:1;a:4:{i:0;s:12:\"padding:15px\";i:1;s:18:\"background:#160002\";i:2;s:24:\"border:3px solid #11a54f\";i:3;s:16:\"margin:10px auto\";}}i:103;a:2:{i:0;a:1:{s:21:\".ct-rounded .col-sm-2\";a:1:{i:1;a:2:{i:0;s:10:\"ct-rounded\";i:1;s:8:\"col-sm-2\";}}}i:1;a:3:{i:0;s:70:\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\";i:1;s:11:\"padding:2px\";i:2;s:11:\"height:100%\";}}i:104;a:2:{i:0;a:1:{s:13:\".game-wrapper\";a:1:{i:1;a:1:{i:0;s:12:\"game-wrapper\";}}}i:1;a:2:{i:0;s:12:\"height:200px\";i:1;s:9:\"z-index:0\";}}i:105;a:2:{i:0;a:1:{s:9:\".game-img\";a:1:{i:1;a:1:{i:0;s:8:\"game-img\";}}}i:1;a:4:{i:0;s:17:\"position:absolute\";i:1;s:10:\"width:100%\";i:2;s:5:\"top:0\";i:3;s:9:\"z-index:0\";}}i:106;a:2:{i:0;a:1:{s:14:\".image-wrapper\";a:1:{i:1;a:1:{i:0;s:13:\"image-wrapper\";}}}i:1;a:1:{i:0;s:9:\"z-index:0\";}}i:107;a:2:{i:0;a:1:{s:14:\".games-wrapper\";a:1:{i:1;a:1:{i:0;s:13:\"games-wrapper\";}}}i:1;a:7:{i:0;s:17:\"position:absolute\";i:1;s:10:\"width:100%\";i:2;s:11:\"height:100%\";i:3;s:5:\"top:0\";i:4;s:6:\"left:0\";i:5;s:7:\"right:0\";i:6;s:8:\"bottom:0\";}}i:108;a:2:{i:0;a:1:{s:10:\".title-row\";a:1:{i:1;a:1:{i:0;s:9:\"title-row\";}}}i:1;a:5:{i:0;s:16:\"margin:21px auto\";i:1;s:31:\"border-bottom:3px solid #11a54f\";i:2;s:14:\"font-size:19px\";i:3;s:12:\"display:flex\";i:4;s:18:\"align-items:center\";}}i:109;a:2:{i:0;a:1:{s:12:\".title-games\";a:1:{i:1;a:1:{i:0;s:11:\"title-games\";}}}i:1;a:6:{i:0;s:14:\"font-size:14px\";i:1;s:20:\"padding:4px 10px 8px\";i:2;s:10:\"color:#fff\";i:3;s:22:\"text-overflow:ellipsis\";i:4;s:18:\"white-space:nowrap\";i:5;s:17:\"text-align:center\";}}i:110;a:2:{i:0;a:1:{s:7:\".footer\";a:1:{i:1;a:1:{i:0;s:6:\"footer\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:18:\"background:#101013\";i:2;s:24:\"padding:0px 0px 20px 0px\";}}i:111;a:2:{i:0;a:1:{s:11:\".disclaimer\";a:1:{i:1;a:1:{i:0;s:10:\"disclaimer\";}}}i:1;a:1:{i:0;s:29:\"border-top:1px dotted #101013\";}}i:112;a:2:{i:0;a:2:{s:15:\".footer amp-img\";a:2:{i:1;a:1:{i:0;s:6:\"footer\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:16:\".footer amp-anim\";a:2:{i:1;a:1:{i:0;s:6:\"footer\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:11:\"height:auto\";}}i:113;a:2:{i:0;a:1:{s:13:\".footer-title\";a:1:{i:1;a:1:{i:0;s:12:\"footer-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:13:\"color:#d5d5d5\";i:2;s:16:\"margin:20px auto\";}}i:114;a:2:{i:0;a:1:{s:12:\".footer .row\";a:1:{i:1;a:2:{i:0;s:6:\"footer\";i:1;s:3:\"row\";}}}i:1;a:1:{i:0;s:20:\"justify-content:left\";}}i:115;a:2:{i:0;a:1:{s:17:\".footer .col-sm-2\";a:1:{i:1;a:2:{i:0;s:6:\"footer\";i:1;s:8:\"col-sm-2\";}}}i:1;a:1:{i:0;s:20:\"justify-content:left\";}}i:116;a:2:{i:0;a:2:{s:19:\".provider .col-sm-2\";a:1:{i:1;a:2:{i:0;s:8:\"provider\";i:1;s:8:\"col-sm-2\";}}s:18:\".payment .col-sm-2\";a:1:{i:1;a:2:{i:0;s:7:\"payment\";i:1;s:8:\"col-sm-2\";}}}i:1;a:2:{i:0;s:15:\"max-width:111px\";i:1;s:10:\"margin:7px\";}}i:117;a:2:{i:0;a:1:{s:10:\".copyright\";a:1:{i:1;a:1:{i:0;s:9:\"copyright\";}}}i:1;a:3:{i:0;s:14:\"font-size:11px\";i:1;s:16:\"padding:15px 0px\";i:2;s:17:\"text-align:center\";}}i:118;a:2:{i:0;a:1:{s:12:\".copyright a\";a:2:{i:1;a:1:{i:0;s:9:\"copyright\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:10:\"color:#aaa\";i:1;s:20:\"display:inline-block\";}}i:119;a:2:{i:0;a:1:{s:8:\".article\";a:1:{i:1;a:1:{i:0;s:7:\"article\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:120;s:42:\"@media only screen and (max-width: 768px){\";i:121;a:2:{i:0;a:2:{s:19:\".main-slide amp-img\";a:2:{i:1;a:1:{i:0;s:10:\"main-slide\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:20:\".main-slide amp-anim\";a:2:{i:1;a:1:{i:0;s:10:\"main-slide\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:11:\"height:100%\";}}i:122;a:2:{i:0;a:2:{s:10:\".main-menu\";a:1:{i:1;a:1:{i:0;s:9:\"main-menu\";}}s:11:\".top-header\";a:1:{i:1;a:1:{i:0;s:10:\"top-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:123;a:2:{i:0;a:1:{s:7:\".mobile\";a:1:{i:1;a:1:{i:0;s:6:\"mobile\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:124;a:2:{i:0;a:1:{s:8:\".desktop\";a:1:{i:1;a:1:{i:0;s:7:\"desktop\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:125;a:2:{i:0;a:1:{s:7:\".header\";a:1:{i:1;a:1:{i:0;s:6:\"header\";}}}i:1;a:4:{i:0;s:14:\"z-index:999999\";i:1;s:11:\"height:65px\";i:2;s:14:\"position:fixed\";i:3;s:18:\"background:#151515\";}}i:126;a:2:{i:0;a:1:{s:8:\".nav-bar\";a:1:{i:1;a:1:{i:0;s:7:\"nav-bar\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:127;a:2:{i:0;a:1:{s:7:\".sticky\";a:1:{i:1;a:1:{i:0;s:6:\"sticky\";}}}i:1;a:1:{i:0;s:11:\"height:65px\";}}i:128;a:2:{i:0;a:1:{s:10:\".site-logo\";a:1:{i:1;a:1:{i:0;s:9:\"site-logo\";}}}i:1;a:7:{i:0;s:7:\"top:9px\";i:1;s:8:\"left:0px\";i:2;s:7:\"right:0\";i:3;s:11:\"width:149px\";i:4;s:10:\"float:none\";i:5;s:11:\"margin:auto\";i:6;s:17:\"position:absolute\";}}i:129;a:2:{i:0;a:2:{s:18:\".site-logo amp-img\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:19:\".site-logo amp-anim\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:3:{i:0;s:11:\"width:150px\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:130;a:2:{i:0;a:1:{s:11:\".top-header\";a:1:{i:1;a:1:{i:0;s:10:\"top-header\";}}}i:1;a:4:{i:0;s:7:\"top:0px\";i:1;s:8:\"left:0px\";i:2;s:11:\"margin:auto\";i:3;s:10:\"width:100%\";}}i:131;a:2:{i:0;a:3:{s:12:\".menu-mobile\";a:1:{i:1;a:1:{i:0;s:11:\"menu-mobile\";}}s:26:\".menu-login-menu-container\";a:1:{i:1;a:1:{i:0;s:25:\"menu-login-menu-container\";}}s:6:\".slide\";a:1:{i:1;a:1:{i:0;s:5:\"slide\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:11:\"margin:auto\";}}i:132;a:2:{i:0;a:1:{s:21:\".menu-mobile .menu li\";a:2:{i:1;a:2:{i:0;s:11:\"menu-mobile\";i:1;s:4:\"menu\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:69:\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\";}}i:133;a:2:{i:0;a:1:{s:5:\".menu\";a:1:{i:1;a:1:{i:0;s:4:\"menu\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:134;a:2:{i:0;a:1:{s:14:\".main-homepage\";a:1:{i:1;a:1:{i:0;s:13:\"main-homepage\";}}}i:1;a:1:{i:0;s:18:\"background:#131313\";}}i:135;a:2:{i:0;a:1:{s:17:\".main-homepage li\";a:2:{i:1;a:1:{i:0;s:13:\"main-homepage\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:4:{i:0;s:11:\"width:23.4%\";i:1;s:17:\"border-radius:7px\";i:2;s:17:\"margin-bottom:5px\";i:3;s:20:\"display:inline-block\";}}i:136;a:2:{i:0;a:1:{s:19:\".main-homepage li a\";a:2:{i:1;a:1:{i:0;s:13:\"main-homepage\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:7:{i:0;s:11:\"padding:7px\";i:1;s:14:\"font-size:14px\";i:2;s:12:\"display:flex\";i:3;s:18:\"align-items:center\";i:4;s:16:\"flex-wrap:nowrap\";i:5;s:21:\"flex-direction:column\";i:6;s:13:\"color:#8b8b8b\";}}i:137;a:2:{i:0;a:1:{s:27:\".main-homepage li .svg-menu\";a:2:{i:1;a:2:{i:0;s:13:\"main-homepage\";i:1;s:8:\"svg-menu\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:3:{i:0;s:11:\"height:30px\";i:1;s:10:\"width:25px\";i:2;s:20:\"background-size:25px\";}}i:138;a:2:{i:0;a:1:{s:13:\".login-mobile\";a:1:{i:1;a:1:{i:0;s:12:\"login-mobile\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:139;a:2:{i:0;a:1:{s:16:\".login-mobile li\";a:2:{i:1;a:1:{i:0;s:12:\"login-mobile\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:4:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"border-radius:2px\";i:2;s:11:\"width:49.5%\";i:3;s:17:\"text-align:center\";}}i:140;a:2:{i:0;a:1:{s:18:\".login-mobile li a\";a:2:{i:1;a:1:{i:0;s:12:\"login-mobile\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:5:{i:0;s:10:\"color:#fff\";i:1;s:14:\"font-size:18px\";i:2;s:16:\"padding:9px 20px\";i:3;s:13:\"display:block\";i:4;s:28:\"text-shadow:0px 0px 3px #000\";}}i:141;a:2:{i:0;a:1:{s:11:\"ul.nav-item\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:142;a:2:{i:0;a:1:{s:16:\".nav-item li a i\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:3:{i:0;s:2:\"li\";i:1;s:1:\"a\";i:2;s:1:\"i\";}}}i:1;a:1:{i:0;s:21:\"vertical-align:middle\";}}i:143;a:2:{i:0;a:1:{s:12:\".nav-item li\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:5:{i:0;s:18:\"background:#1a1a1a\";i:1;s:17:\"position:relative\";i:2;s:16:\"line-height:20px\";i:3;s:20:\"display:inline-block\";i:4;s:10:\"width:100%\";}}i:144;a:2:{i:0;a:1:{s:14:\".nav-item li a\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:5:{i:0;s:25:\"text-transform:capitalize\";i:1;s:13:\"display:block\";i:2;s:10:\"color:#ddd\";i:3;s:20:\"text-decoration:none\";i:4;s:17:\"padding:10px 15px\";}}i:145;a:2:{i:0;a:1:{s:18:\".nav-item li:hover\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:24:\"background-color:#393939\";}}i:146;a:2:{i:0;a:1:{s:27:\".nav-item li [aria-current]\";a:3:{i:3;a:1:{i:0;s:12:\"aria-current\";}i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:3:{i:0;s:24:\"background-color:#393939\";i:1;s:13:\"display:block\";i:2;s:10:\"width:100%\";}}i:147;a:2:{i:0;a:1:{s:19:\".nav-item li:before\";a:2:{i:1;a:1:{i:0;s:8:\"nav-item\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:8:{i:0;s:10:\"content:\"\"\";i:1;s:17:\"position:absolute\";i:2;s:5:\"top:0\";i:3;s:6:\"left:0\";i:4;s:10:\"z-index:-1\";i:5;s:11:\"height:100%\";i:6;s:9:\"width:3px\";i:7;s:24:\"background-color:#393939\";}}i:148;a:2:{i:0;a:1:{s:17:\".contact-floating\";a:1:{i:1;a:1:{i:0;s:16:\"contact-floating\";}}}i:1;a:6:{i:0;s:14:\"position:fixed\";i:1;s:8:\"bottom:0\";i:2;s:18:\"background:#1e1e1e\";i:3;s:10:\"width:100%\";i:4;s:11:\"padding:3px\";i:5;s:9:\"z-index:3\";}}i:149;a:2:{i:0;a:1:{s:22:\".contact-floating li a\";a:2:{i:1;a:1:{i:0;s:16:\"contact-floating\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:2:{i:0;s:14:\"font-size:13px\";i:1;s:10:\"color:#fff\";}}i:150;a:2:{i:0;a:1:{s:20:\".contact-floating li\";a:2:{i:1;a:1:{i:0;s:16:\"contact-floating\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:4:{i:0;s:20:\"display:inline-block\";i:1;s:9:\"width:32%\";i:2;s:17:\"text-align:center\";i:3;s:15:\"padding:5px 0px\";}}i:151;a:2:{i:0;a:1:{s:22:\".contact-floating li i\";a:2:{i:1;a:1:{i:0;s:16:\"contact-floating\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"i\";}}}i:1;a:5:{i:0;s:13:\"display:block\";i:1;s:11:\"margin:auto\";i:2;s:20:\"background-size:25px\";i:3;s:10:\"width:25px\";i:4;s:11:\"height:25px\";}}i:152;a:2:{i:0;a:1:{s:5:\".main\";a:1:{i:1;a:1:{i:0;s:4:\"main\";}}}i:1;a:1:{i:0;s:18:\"background:#020206\";}}i:153;a:2:{i:0;a:1:{s:6:\".slide\";a:1:{i:1;a:1:{i:0;s:5:\"slide\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:154;a:2:{i:0;a:1:{s:11:\".main-slide\";a:1:{i:1;a:1:{i:0;s:10:\"main-slide\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:155;a:2:{i:0;a:1:{s:22:\".bg-rounded .container\";a:1:{i:1;a:2:{i:0;s:10:\"bg-rounded\";i:1;s:9:\"container\";}}}i:1;a:3:{i:0;s:11:\"padding:5px\";i:1;s:18:\"background:#020204\";i:2;s:15:\"margin-bottom:0\";}}i:156;a:2:{i:0;a:1:{s:11:\".ct-rounded\";a:1:{i:1;a:1:{i:0;s:10:\"ct-rounded\";}}}i:1;a:3:{i:0;s:9:\"padding:0\";i:1;s:15:\"background:none\";i:2;s:8:\"border:0\";}}i:157;a:2:{i:0;a:1:{s:16:\".games .col-sm-2\";a:1:{i:1;a:2:{i:0;s:5:\"games\";i:1;s:8:\"col-sm-2\";}}}i:1;a:3:{i:0;s:13:\"max-width:31%\";i:1;s:12:\"flex:0 0 31%\";i:2;s:10:\"margin:4px\";}}i:158;a:2:{i:0;a:1:{s:13:\".game-wrapper\";a:1:{i:1;a:1:{i:0;s:12:\"game-wrapper\";}}}i:1;a:1:{i:0;s:12:\"height:150px\";}}i:159;a:2:{i:0;a:1:{s:10:\".title-row\";a:1:{i:1;a:1:{i:0;s:9:\"title-row\";}}}i:1;a:2:{i:0;s:16:\"margin:10px 10px\";i:1;s:17:\"text-align:center\";}}i:160;a:2:{i:0;a:2:{s:15:\".footer amp-img\";a:2:{i:1;a:1:{i:0;s:6:\"footer\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:16:\".footer amp-anim\";a:2:{i:1;a:1:{i:0;s:6:\"footer\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:11:\"height:auto\";}}i:161;a:2:{i:0;a:1:{s:17:\".footer .col-sm-2\";a:1:{i:1;a:2:{i:0;s:6:\"footer\";i:1;s:8:\"col-sm-2\";}}}i:1;a:3:{i:0;s:13:\"max-width:21%\";i:1;s:12:\"flex:0 0 21%\";i:2;s:10:\"margin:4px\";}}i:162;a:2:{i:0;a:1:{s:13:\".footer-title\";a:1:{i:1;a:1:{i:0;s:12:\"footer-title\";}}}i:1;a:1:{i:0;s:17:\"width:max-content\";}}i:163;a:2:{i:0;a:1:{s:18:\".footer .container\";a:1:{i:1;a:2:{i:0;s:6:\"footer\";i:1;s:9:\"container\";}}}i:1;a:1:{i:0;s:16:\"padding:0px 10px\";}}i:164;a:2:{i:0;a:1:{s:10:\".copyright\";a:1:{i:1;a:1:{i:0;s:9:\"copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:165;a:2:{i:0;a:1:{s:13:\".quick-footer\";a:1:{i:1;a:1:{i:0;s:12:\"quick-footer\";}}}i:1;a:1:{i:0;s:9:\"width:44%\";}}i:166;a:2:{i:0;a:1:{s:16:\".quick-footer li\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"padding:0px 7px\";}}i:167;a:2:{i:0;a:1:{s:12:\"#side-opener\";a:1:{i:2;a:1:{i:0;s:11:\"side-opener\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:168;a:2:{i:0;a:1:{s:9:\"input .tg\";a:2:{i:1;a:1:{i:0;s:2:\"tg\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:13:\"display:block\";i:1;s:15:\"overflow:hidden\";i:2;s:17:\"position:relative\";}}i:169;a:2:{i:0;a:1:{s:25:\".tg:checked+.page-content\";a:1:{i:1;a:2:{i:0;s:2:\"tg\";i:1;s:12:\"page-content\";}}}i:1;a:1:{i:0;s:11:\"right:272px\";}}i:170;a:2:{i:0;a:1:{s:13:\".page-sidebar\";a:1:{i:1;a:1:{i:0;s:12:\"page-sidebar\";}}}i:1;a:10:{i:0;s:24:\"background-color:#1a1a1a\";i:1;s:11:\"width:272px\";i:2;s:13:\"display:block\";i:3;s:9:\"z-index:2\";i:4;s:7:\"top:0px\";i:5;s:9:\"right:0px\";i:6;s:10:\"bottom:0px\";i:7;s:15:\"overflow:hidden\";i:8;s:14:\"position:fixed\";i:9;s:30:\"border-right:1px solid #353535\";}}i:171;a:2:{i:0;a:1:{s:20:\".page-sidebar-scroll\";a:1:{i:1;a:1:{i:0;s:19:\"page-sidebar-scroll\";}}}i:1;a:7:{i:0;s:9:\"z-index:2\";i:1;s:15:\"overflow:scroll\";i:2;s:17:\"overflow-x:hidden\";i:3;s:11:\"height:100%\";i:4;s:23:\"padding:0px 0px 0px 3px\";i:5;s:10:\"width:100%\";i:6;s:8:\"top:-1px\";}}i:172;a:2:{i:0;a:1:{s:13:\".page-content\";a:1:{i:1;a:1:{i:0;s:12:\"page-content\";}}}i:1;a:7:{i:0;s:10:\"z-index:10\";i:1;s:7:\"right:0\";i:2;s:13:\"display:block\";i:3;s:16:\"min-height:580px\";i:4;s:28:\"transition:all .25s ease-out\";i:5;s:36:\"-webkit-transition:all .25s ease-out\";i:6;s:24:\"background-color:#0a0a0a\";}}i:173;a:2:{i:0;a:1:{s:15:\".deploy-sidebar\";a:1:{i:1;a:1:{i:0;s:14:\"deploy-sidebar\";}}}i:1;a:11:{i:0;s:95:\"background-image:url(\"https://Lion288Slot.com/wp-content/themes/mabar88/images/deploy-nav.png\")\";i:1;s:27:\"background-repeat:no-repeat\";i:2;s:28:\"background-position:9px 21px\";i:3;s:25:\"background-size:28px 19px\";i:4;s:11:\"height:60px\";i:5;s:14:\"max-width:44px\";i:6;s:10:\"z-index:50\";i:7;s:9:\"width:20%\";i:8;s:11:\"float:right\";i:9;s:7:\"top:1px\";i:10;s:10:\"right:10px\";}}i:174;a:2:{i:0;a:1:{s:18:\".sidebar-shortcuts\";a:1:{i:1;a:1:{i:0;s:17:\"sidebar-shortcuts\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:10:\"height:1px\";i:2;s:21:\"background-color:#333\";}}i:175;s:1:\"}\";i:176;s:42:\"@media only screen and (max-width: 328px){\";i:177;a:2:{i:0;a:1:{s:10:\".site-logo\";a:1:{i:1;a:1:{i:0;s:9:\"site-logo\";}}}i:1;a:1:{i:0;s:9:\"width:38%\";}}i:178;a:2:{i:0;a:2:{s:18:\".site-logo amp-img\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:19:\".site-logo amp-anim\";a:2:{i:1;a:1:{i:0;s:9:\"site-logo\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:11:\"height:auto\";}}i:179;a:2:{i:0;a:1:{s:18:\".login-mobile li a\";a:2:{i:1;a:1:{i:0;s:12:\"login-mobile\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:2:{i:0;s:15:\"padding:5px 9px\";i:1;s:14:\"font-size:11px\";}}i:180;a:2:{i:0;a:1:{s:17:\".main-homepage li\";a:2:{i:1;a:1:{i:0;s:13:\"main-homepage\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:11:\"width:23.4%\";}}i:181;a:2:{i:0;a:1:{s:17:\".main-homepage li\";a:2:{i:1;a:1:{i:0;s:13:\"main-homepage\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:17px\";}}i:182;a:2:{i:0;a:1:{s:19:\".main-homepage li a\";a:2:{i:1;a:1:{i:0;s:13:\"main-homepage\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:8:\"top:76px\";}}i:183;a:2:{i:0;a:1:{s:6:\".slide\";a:1:{i:1;a:1:{i:0;s:5:\"slide\";}}}i:1;a:1:{i:0;s:12:\"height:102px\";}}i:184;a:2:{i:0;a:1:{s:15:\".quick-footer i\";a:2:{i:1;a:1:{i:0;s:12:\"quick-footer\";}i:0;a:1:{i:0;s:1:\"i\";}}}i:1;a:1:{i:0;s:11:\"right:-13px\";}}i:185;a:2:{i:0;a:1:{s:13:\".page-sidebar\";a:1:{i:1;a:1:{i:0;s:12:\"page-sidebar\";}}}i:1;a:1:{i:0;s:11:\"width:200px\";}}i:186;a:2:{i:0;a:1:{s:25:\".tg:checked+.page-content\";a:1:{i:1;a:2:{i:0;s:2:\"tg\";i:1;s:12:\"page-content\";}}}i:1;a:1:{i:0;s:10:\"left:202px\";}}i:187;s:1:\"}\";i:188;s:1:\"}\";i:189;a:2:{i:0;a:2:{s:30:\"amp-anim.amp-wp-enforced-sizes\";a:2:{i:1;a:1:{i:0;s:21:\"amp-wp-enforced-sizes\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:29:\"amp-img.amp-wp-enforced-sizes\";a:2:{i:1;a:1:{i:0;s:21:\"amp-wp-enforced-sizes\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}}i:1;a:2:{i:0;s:21:\"-o-object-fit:contain\";i:1;s:18:\"object-fit:contain\";}}i:190;a:2:{i:0;a:4:{s:12:\"amp-anim img\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:17:\"amp-anim noscript\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:11:\"amp-img img\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:16:\"amp-img noscript\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}}i:1;a:5:{i:0;s:23:\"image-rendering:inherit\";i:1;s:21:\"-o-object-fit:inherit\";i:2;s:18:\"object-fit:inherit\";i:3;s:26:\"-o-object-position:inherit\";i:4;s:23:\"object-position:inherit\";}}i:191;a:2:{i:0;a:1:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:36:{i:0;s:31:\"--wp--preset--color--black:#000\";i:1;s:45:\"--wp--preset--color--cyan-bluish-gray:#abb8c3\";i:2;s:31:\"--wp--preset--color--white:#fff\";i:3;s:38:\"--wp--preset--color--pale-pink:#f78da7\";i:4;s:38:\"--wp--preset--color--vivid-red:#cf2e2e\";i:5;s:50:\"--wp--preset--color--luminous-vivid-orange:#ff6900\";i:6;s:49:\"--wp--preset--color--luminous-vivid-amber:#fcb900\";i:7;s:45:\"--wp--preset--color--light-green-cyan:#7bdcb5\";i:8;s:45:\"--wp--preset--color--vivid-green-cyan:#00d084\";i:9;s:43:\"--wp--preset--color--pale-cyan-blue:#8ed1fc\";i:10;s:44:\"--wp--preset--color--vivid-cyan-blue:#0693e3\";i:11;s:41:\"--wp--preset--color--vivid-purple:#9b51e0\";i:12;s:113:\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\";i:13;s:108:\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\";i:14;s:137:\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\";i:15;s:116:\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\";i:16;s:104:\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\";i:17;s:141:\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\";i:18;s:90:\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\";i:19;s:98:\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\";i:20;s:97:\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\";i:21;s:94:\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\";i:22;s:86:\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\";i:23;s:80:\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\";i:24;s:71:\"--wp--preset--duotone--dark-grayscale:url(\"#wp-duotone-dark-grayscale\")\";i:25;s:61:\"--wp--preset--duotone--grayscale:url(\"#wp-duotone-grayscale\")\";i:26;s:69:\"--wp--preset--duotone--purple-yellow:url(\"#wp-duotone-purple-yellow\")\";i:27;s:59:\"--wp--preset--duotone--blue-red:url(\"#wp-duotone-blue-red\")\";i:28;s:59:\"--wp--preset--duotone--midnight:url(\"#wp-duotone-midnight\")\";i:29;s:71:\"--wp--preset--duotone--magenta-yellow:url(\"#wp-duotone-magenta-yellow\")\";i:30;s:67:\"--wp--preset--duotone--purple-green:url(\"#wp-duotone-purple-green\")\";i:31;s:65:\"--wp--preset--duotone--blue-orange:url(\"#wp-duotone-blue-orange\")\";i:32;s:35:\"--wp--preset--font-size--small:13px\";i:33;s:36:\"--wp--preset--font-size--medium:20px\";i:34;s:35:\"--wp--preset--font-size--large:36px\";i:35;s:37:\"--wp--preset--font-size--x-large:42px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"57e5701f0a3e0b4437f92e97599f1f36\";s:10:\"parse_time\";d:0.09738397598266602;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:6:{i:0;s:37:\"webfonts/digital_sans_ef_medium.woff2\";i:1;s:34:\"webfonts/advanced_dot_digital7.eot\";i:2;s:32:\"webfonts/fa-brands-400.eot#iefix\";i:3;s:33:\"webfonts/fa-regular-400.eot#iefix\";i:4;s:31:\"webfonts/fa-solid-900.eot#iefix\";i:5;s:27:\"webfonts/Lato-Regular.woff2\";}}','off'),
(160255,'_transient_timeout_amp-parsed-stylesheet-v40-5b36932d5cf9f4ab6173373b94151ced','1762096991','off'),
(160256,'_transient_amp-parsed-stylesheet-v40-5b36932d5cf9f4ab6173373b94151ced','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-cdd8ca0:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-cdd8ca0\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"85d18e82f0c75e878418ae415714507c\";s:10:\"parse_time\";d:0.00048804283142089844;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160323,'_transient_timeout_amp-parsed-stylesheet-v40-d69322f6b921d1f847f27ed7627dc338','1762106606','off'),
(160324,'_transient_amp-parsed-stylesheet-v40-d69322f6b921d1f847f27ed7627dc338','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-e64351f:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-e64351f\";}}}i:1;a:2:{i:0;s:17:\"position:absolute\";i:1;s:12:\"left:-9966px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"09c39821732b038f09efa2703970f45a\";s:10:\"parse_time\";d:0.010957002639770508;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160368,'_transient_timeout_amp-parsed-stylesheet-v40-980eaa386e4be0d65a7424bce3ea66d0','1762110188','off'),
(160369,'_transient_amp-parsed-stylesheet-v40-980eaa386e4be0d65a7424bce3ea66d0','a:8:{s:6:\"tokens\";a:2:{i:0;a:2:{i:0;a:2:{s:7:\"amp-img\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:8:\"amp-anim\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:11:\"width:750px\";}}i:1;a:2:{i:0;a:1:{s:16:\"amp-iframe.movie\";a:2:{i:1;a:1:{i:0;s:5:\"movie\";}i:0;a:1:{i:0;s:10:\"amp-iframe\";}}}i:1;a:2:{i:0;s:11:\"width:750px\";i:1;s:12:\"height:450px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"f11320fbbe5674f1c6172557f73cc1f5\";s:10:\"parse_time\";d:0.009552001953125;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160389,'_transient_timeout_amp-parsed-stylesheet-v40-2f12da4df36b93214178255d54c1e164','1762110957','off'),
(160390,'_transient_amp-parsed-stylesheet-v40-2f12da4df36b93214178255d54c1e164','a:8:{s:6:\"tokens\";a:2:{i:0;a:2:{i:0;a:2:{s:7:\"amp-img\";a:1:{i:0;a:1:{i:0;s:7:\"amp-img\";}}s:8:\"amp-anim\";a:1:{i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:11:\"width:750px\";}}i:1;a:2:{i:0;a:1:{s:16:\"amp-iframe.movie\";a:2:{i:1;a:1:{i:0;s:5:\"movie\";}i:0;a:1:{i:0;s:10:\"amp-iframe\";}}}i:1;a:2:{i:0;s:11:\"width:750px\";i:1;s:12:\"height:450px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"f11320fbbe5674f1c6172557f73cc1f5\";s:10:\"parse_time\";d:0.004964113235473633;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160401,'_transient_timeout_amp-parsed-stylesheet-v40-a7b0cbbfcc39a66fe39ca21ee22537dc','1762115844','off'),
(160402,'_transient_amp-parsed-stylesheet-v40-a7b0cbbfcc39a66fe39ca21ee22537dc','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-22abcbf:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-22abcbf\";}}}i:1;a:6:{i:0;s:18:\"background:#f9f9f9\";i:1;s:21:\"border:1px solid #aaa\";i:2;s:13:\"display:table\";i:3;s:17:\"margin-bottom:1em\";i:4;s:11:\"padding:1em\";i:5;s:11:\"width:350px\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"4cf7b75a293c632457bc6362b882fa3a\";s:10:\"parse_time\";d:0.006494045257568359;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(160464,'_pre_user_id','2','auto'),
(161440,'_transient_timeout_amp-parsed-stylesheet-v40-d99b1d624b9bc3cae9557be3783632b2','1762288978','off'),
(161441,'_transient_amp-parsed-stylesheet-v40-d99b1d624b9bc3cae9557be3783632b2','a:8:{s:6:\"tokens\";a:544:{i:0;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:16:\"font-size:93.75%\";}}i:1;a:2:{i:0;a:2:{s:1:\"a\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:2;a:2:{i:0;a:2:{s:7:\"a:hover\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:7:\"a:focus\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:3;a:2:{i:0;a:7:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:5:\"input\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:6:\"select\";a:1:{i:0;a:1:{i:0;s:6:\"select\";}}s:8:\"textarea\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}}i:1;a:4:{i:0;s:115:\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\";i:1;s:19:\"font-weight:inherit\";i:2;s:14:\"font-size:15px\";i:3;s:14:\"font-size:1rem\";}}i:4;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:5;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:35px\";i:1;s:28:\"font-size:2.3333333333333rem\";i:2;s:13:\"display:block\";}}i:6;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:7;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";i:2;s:12:\"display:none\";}}i:8;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:9;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:10;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:11;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:2:{i:0;s:14:\"font-size:25px\";i:1;s:28:\"font-size:1.6666666666667rem\";}}i:12;a:2:{i:0;a:2:{s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:14:\"font-size:20px\";i:1;s:28:\"font-size:1.3333333333333rem\";}}i:13;a:2:{i:0;a:2:{s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}}i:1;a:2:{i:0;s:14:\"font-size:18px\";i:1;s:16:\"font-size:1.2rem\";}}i:14;a:2:{i:0;a:2:{s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:15;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:16;a:2:{i:0;a:1:{s:11:\"::selection\";a:0:{}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";i:1;s:10:\"color:#fff\";}}i:17;a:2:{i:0;a:14:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:18;a:2:{i:0;a:3:{s:17:\".tagcloud a:hover\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".tagcloud a:focus\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".tagcloud a.current-item\";a:2:{i:1;a:2:{i:0;s:8:\"tagcloud\";i:1;s:12:\"current-item\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";}}i:19;a:2:{i:0;a:8:{s:11:\"input:focus\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:24:\"input[type=\"text\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"email\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=\"url\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:28:\"input[type=\"password\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"reset\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"search\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:14:\"textarea:focus\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:20;a:2:{i:0;a:6:{s:27:\"input[type=\"radio\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"input[type=reset]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:30:\"input[type=\"checkbox\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:hover:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:focus:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:39:\"input[type=range]::-webkit-slider-thumb\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";i:1;s:42:\"background-color:var(--ast-global-color-0)\";i:2;s:15:\"box-shadow:none\";}}i:21;a:2:{i:0;a:2:{s:34:\".site-footer a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:34:\".site-footer a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:22;a:2:{i:0;a:2:{s:32:\".single .nav-links .nav-previous\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:12:\"nav-previous\";}}s:28:\".single .nav-links .nav-next\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:8:\"nav-next\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:23;a:2:{i:0;a:2:{s:11:\".entry-meta\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}s:13:\".entry-meta *\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}}i:1;a:2:{i:0;s:16:\"line-height:1.45\";i:1;s:31:\"color:var(--ast-global-color-0)\";}}i:24;a:2:{i:0;a:7:{s:19:\".entry-meta a:hover\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:hover *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:19:\".entry-meta a:focus\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:focus *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".page-links > .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:28:\".page-links .page-link:hover\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:24:\".post-navigation a:hover\";a:2:{i:1;a:1:{i:0;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:25;a:2:{i:0;a:3:{s:11:\"#cat option\";a:2:{i:2;a:1:{i:0;s:3:\"cat\";}i:0;a:1:{i:0;s:6:\"option\";}}s:33:\".secondary .calendar_wrap thead a\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}s:41:\".secondary .calendar_wrap thead a:visited\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:26;a:2:{i:0;a:2:{s:32:\".secondary .calendar_wrap #today\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}}s:22:\".ast-progress-val span\";a:2:{i:1;a:1:{i:0;s:16:\"ast-progress-val\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:36:\"background:var(--ast-global-color-0)\";}}i:27;a:2:{i:0;a:2:{s:32:\".secondary a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:32:\".secondary a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:28;a:2:{i:0;a:1:{s:25:\".calendar_wrap #today > a\";a:3:{i:1;a:1:{i:0;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:29;a:2:{i:0;a:2:{s:22:\".page-links .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:26:\".single .post-navigation a\";a:2:{i:1;a:2:{i:0;s:6:\"single\";i:1;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:30;a:2:{i:0;a:1:{s:18:\".ast-archive-title\";a:1:{i:1;a:1:{i:0;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:31;a:2:{i:0;a:1:{s:13:\".widget-title\";a:1:{i:1;a:1:{i:0;s:12:\"widget-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:21px\";i:1;s:16:\"font-size:1.4rem\";i:2;s:31:\"color:var(--ast-global-color-2)\";}}i:32;a:2:{i:0;a:5:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}s:17:\"#secondary button\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"button\";}}s:16:\"#secondary input\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"#secondary select\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"select\";}}s:19:\"#secondary textarea\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:33;a:2:{i:0;a:2:{s:33:\".ast-single-post .entry-content a\";a:2:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:58:\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\";a:2:{i:1;a:1:{i:0;s:19:\"ast-comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:34;a:2:{i:0;a:11:{s:56:\".ast-single-post .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}s:60:\".ast-single-post .elementor-button-wrapper .elementor-button\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:24:\"elementor-button-wrapper\";i:2;s:16:\"elementor-button\";}}s:43:\".ast-single-post .entry-content .uagb-tab a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:8:\"uagb-tab\";}i:0;a:1:{i:0;s:1:\"a\";}}s:47:\".ast-single-post .entry-content .uagb-ifb-cta a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:12:\"uagb-ifb-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:56:\".ast-single-post .entry-content .wp-block-uagb-buttons a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:21:\"wp-block-uagb-buttons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:54:\".ast-single-post .entry-content .uabb-module-content a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:19:\"uabb-module-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-post-grid a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-post-grid\";}i:0;a:1:{i:0;s:1:\"a\";}}s:48:\".ast-single-post .entry-content .uagb-timeline a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:13:\"uagb-timeline\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-toc__wrap a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-toc__wrap\";}i:0;a:1:{i:0;s:1:\"a\";}}s:52:\".ast-single-post .entry-content .uagb-taxomony-box a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:17:\"uagb-taxomony-box\";}i:0;a:1:{i:0;s:1:\"a\";}}s:46:\".ast-single-post .entry-content .woocommerce a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:11:\"woocommerce\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:35;a:2:{i:0;a:1:{s:37:\".ast-logo-title-inline .site-logo-img\";a:1:{i:1;a:2:{i:0;s:21:\"ast-logo-title-inline\";i:1;s:13:\"site-logo-img\";}}}i:1;a:1:{i:0;s:17:\"padding-right:1em\";}}i:36;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:18:\"margin:4em 0 2.5em\";i:1;s:21:\"word-break:break-word\";i:2;s:13:\"line-height:2\";}}i:37;a:2:{i:0;a:1:{s:13:\"#secondary li\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.25em\";}}i:38;a:2:{i:0;a:1:{s:24:\"#secondary li:last-child\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:39;s:26:\"@media (max-width: 768px){\";i:40;a:2:{i:0;a:1:{s:58:\".js_active .ast-plain-container.ast-single-post #secondary\";a:2:{i:1;a:3:{i:0;s:9:\"js_active\";i:1;s:19:\"ast-plain-container\";i:2;s:15:\"ast-single-post\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:41;s:1:\"}\";i:42;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:11:\"padding:2em\";i:2;s:17:\"margin-bottom:2em\";}}i:43;s:26:\"@media (min-width: 993px){\";i:44;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:60px\";}}i:45;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:46;s:1:\"}\";i:47;s:26:\"@media (max-width: 993px){\";i:48;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:49;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:30px\";}}i:50;s:1:\"}\";i:51;s:25:\"@media (max-width:921px){\";i:52;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:53;s:1:\"}\";i:54;s:25:\"@media (min-width:921px){\";i:55;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:56;s:1:\"}\";i:57;a:2:{i:0;a:1:{s:29:\".wp-block-buttons.aligncenter\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-buttons\";i:1;s:11:\"aligncenter\";}}}i:1;a:1:{i:0;s:22:\"justify-content:center\";}}i:58;s:26:\"@media (min-width:1200px){\";i:59;a:2:{i:0;a:1:{s:31:\".wp-block-group .has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:12:\"padding:20px\";}}i:60;s:1:\"}\";i:61;s:26:\"@media (min-width:1200px){\";i:62;a:2:{i:0;a:4:{s:64:\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:64:\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:63;s:1:\"}\";i:64;a:2:{i:0;a:1:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:unset\";}}i:65;a:2:{i:0;a:1:{s:25:\".wp-block-image.size-full\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-image\";i:1;s:9:\"size-full\";}}}i:1;a:1:{i:0;s:13:\"margin:2rem 0\";}}i:66;a:2:{i:0;a:1:{s:34:\".wp-block-separator.has-background\";a:1:{i:1;a:2:{i:0;s:18:\"wp-block-separator\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:67;a:2:{i:0;a:1:{s:17:\".wp-block-gallery\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-gallery\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.6em\";}}i:68;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:2:{i:0;s:15:\"padding-top:4em\";i:1;s:18:\"padding-bottom:4em\";}}i:69;a:2:{i:0;a:3:{s:61:\".wp-block-group__inner-container .wp-block-columns:last-child\";a:1:{i:1;a:2:{i:0;s:31:\"wp-block-group__inner-container\";i:1;s:16:\"wp-block-columns\";}}s:44:\".wp-block-group__inner-container :last-child\";a:1:{i:1;a:1:{i:0;s:31:\"wp-block-group__inner-container\";}}s:21:\".wp-block-table table\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-table\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:70;a:2:{i:0;a:1:{s:20:\".blocks-gallery-grid\";a:1:{i:1;a:1:{i:0;s:19:\"blocks-gallery-grid\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:71;a:2:{i:0;a:1:{s:34:\".wp-block-navigation-link__content\";a:1:{i:1;a:1:{i:0;s:33:\"wp-block-navigation-link__content\";}}}i:1;a:1:{i:0;s:13:\"padding:5px 0\";}}i:72;a:2:{i:0;a:2:{s:54:\".wp-block-group .wp-block-group .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";i:2;s:21:\"has-text-align-center\";}}s:55:\".wp-block-group .wp-block-column .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:15:\"wp-block-column\";i:2;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:73;a:2:{i:0;a:1:{s:22:\".has-text-align-center\";a:1:{i:1;a:1:{i:0;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:74;s:26:\"@media (max-width:1200px){\";i:75;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:3em\";}}i:76;a:2:{i:0;a:1:{s:31:\".wp-block-group .wp-block-group\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:13:\"padding:1.5em\";}}i:77;a:2:{i:0;a:2:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}s:16:\".wp-block-column\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-column\";}}}i:1;a:1:{i:0;s:13:\"margin:1rem 0\";}}i:78;s:1:\"}\";i:79;s:25:\"@media (min-width:921px){\";i:80;a:2:{i:0;a:1:{s:33:\".wp-block-columns .wp-block-group\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-columns\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:81;s:1:\"}\";i:82;s:25:\"@media (max-width:544px){\";i:83;a:2:{i:0;a:2:{s:54:\".wp-block-cover-image .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:20:\"wp-block-cover-image\";i:1;s:31:\"wp-block-cover__inner-container\";}}s:48:\".wp-block-cover .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-cover\";i:1;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:11:\"width:unset\";}}i:84;a:2:{i:0;a:2:{s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}s:21:\".wp-block-cover-image\";a:1:{i:1;a:1:{i:0;s:20:\"wp-block-cover-image\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:85;a:2:{i:0;a:2:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:86;a:2:{i:0;a:4:{s:35:\".wp-block-media-text__media amp-img\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:36:\".wp-block-media-text__media amp-anim\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:37:\".wp-block-media-text__media amp-video\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:9:\"amp-video\";}}s:39:\".wp-block-media-text__media amp-youtube\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:11:\"amp-youtube\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:14:\"max-width:100%\";}}i:87;a:2:{i:0;a:1:{s:65:\".wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:19:\"wp-block-media-text\";i:1;s:14:\"has-background\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:11:\"padding:1em\";}}i:88;s:1:\"}\";i:89;s:25:\"@media (min-width:544px){\";i:90;a:2:{i:0;a:1:{s:88:\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:22:\"has-media-on-the-right\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 8% 0 0\";}}i:91;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 0 0 8%\";}}i:92;a:2:{i:0;a:6:{s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-bottom-left\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-bottom-right\";}}s:103:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:20:\"is-position-top-left\";}}s:104:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:21:\"is-position-top-right\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-center-right\";}}s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-center-left\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:93;s:1:\"}\";i:94;s:25:\"@media (max-width:544px){\";i:95;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:8% 0\";}}i:96;a:2:{i:0;a:2:{s:56:\".wp-block-media-text .wp-block-media-text__media amp-img\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:57:\".wp-block-media-text .wp-block-media-text__media amp-anim\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:10:\"width:auto\";i:1;s:14:\"max-width:100%\";}}i:97;s:1:\"}\";i:98;a:2:{i:0;a:1:{s:56:\".wp-block-button.is-style-outline .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:99;a:2:{i:0;a:2:{s:79:\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:76:\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";i:2;s:16:\"is-style-outline\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:100;a:2:{i:0;a:2:{s:62:\".wp-block-button.is-style-outline .wp-block-button__link:hover\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:62:\".wp-block-button.is-style-outline .wp-block-button__link:focus\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";i:1;s:38:\"border-color:var(--ast-global-color-1)\";}}i:101;a:2:{i:0;a:2:{s:82:\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:82:\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:102;a:2:{i:0;a:2:{s:37:\".post-page-numbers.current .page-link\";a:1:{i:1;a:3:{i:0;s:17:\"post-page-numbers\";i:1;s:7:\"current\";i:2;s:9:\"page-link\";}}s:37:\".ast-pagination .page-numbers.current\";a:1:{i:1;a:3:{i:0;s:14:\"ast-pagination\";i:1;s:12:\"page-numbers\";i:2;s:7:\"current\";}}}i:1;a:4:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:17:\"border-radius:2px\";}}i:103;s:25:\"@media (min-width:544px){\";i:104;a:2:{i:0;a:1:{s:27:\".entry-content > .alignleft\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignleft\";}}}i:1;a:1:{i:0;s:17:\"margin-right:20px\";}}i:105;a:2:{i:0;a:1:{s:28:\".entry-content > .alignright\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:10:\"alignright\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:106;s:1:\"}\";i:107;a:2:{i:0;a:1:{s:15:\"h1.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:108;a:2:{i:0;a:1:{s:15:\"h2.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:109;a:2:{i:0;a:1:{s:15:\"h3.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:110;s:25:\"@media (max-width:921px){\";i:111;a:2:{i:0;a:2:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:112;a:2:{i:0;a:2:{s:32:\".ast-separate-container #primary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding:1.5em 0\";}}i:113;a:2:{i:0;a:2:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:15:\"padding:1.5em 0\";i:1;s:8:\"margin:0\";}}i:114;a:2:{i:0;a:1:{s:43:\".ast-left-sidebar #content > .ast-container\";a:2:{i:1;a:2:{i:0;s:16:\"ast-left-sidebar\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:29:\"flex-direction:column-reverse\";i:2;s:10:\"width:100%\";}}i:115;a:2:{i:0;a:2:{s:30:\".ast-author-box amp-img.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:31:\".ast-author-box amp-anim.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"margin:20px 0 0 0\";}}i:116;s:1:\"}\";i:117;s:25:\"@media (max-width:921px){\";i:118;a:2:{i:0;a:1:{s:20:\"#secondary.secondary\";a:2:{i:1;a:1:{i:0;s:9:\"secondary\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:119;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:16:\"padding-left:1em\";i:1;s:17:\"padding-right:1em\";}}i:120;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-two-container #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:14:\"padding-left:0\";i:1;s:15:\"padding-right:0\";}}i:121;a:2:{i:0;a:2:{s:51:\".ast-page-builder-template .entry-header #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:12:\"entry-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:37:\".ast-page-builder-template #secondary\";a:2:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:122;s:1:\"}\";i:123;s:25:\"@media (max-width:921px){\";i:124;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:125;a:2:{i:0;a:2:{s:54:\".ast-page-builder-template.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:55:\".ast-page-builder-template.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:20px\";i:1;s:17:\"padding-left:20px\";}}i:126;a:2:{i:0;a:2:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:14:\"padding-left:0\";}}i:127;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:128;s:1:\"}\";i:129;s:25:\"@media (min-width:922px){\";i:130;a:2:{i:0;a:2:{s:50:\".ast-separate-container.ast-right-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:49:\".ast-separate-container.ast-left-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:131;a:2:{i:0;a:1:{s:50:\".search-no-results.ast-separate-container #primary\";a:2:{i:1;a:2:{i:0;s:17:\"search-no-results\";i:1;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:4em\";}}i:132;s:1:\"}\";i:133;s:25:\"@media (min-width:922px){\";i:134;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:27:\"border-right:1px solid #eee\";}}i:135;a:2:{i:0;a:1:{s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:26:\"border-left:1px solid #eee\";}}i:136;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:26:\"border-left:1px solid #eee\";i:1;s:16:\"margin-left:-1px\";}}i:137;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:27:\"border-right:1px solid #eee\";i:1;s:17:\"margin-right:-1px\";}}i:138;a:2:{i:0;a:1:{s:70:\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:17:\"padding-left:30px\";i:1;s:15:\"padding-right:0\";}}i:139;a:2:{i:0;a:1:{s:69:\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:30px\";i:1;s:14:\"padding-left:0\";}}i:140;a:2:{i:0;a:2:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:51:\".ast-separate-container.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:141;a:2:{i:0;a:1:{s:71:\".ast-separate-container.ast-two-container #secondary .widget:last-child\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:142;s:1:\"}\";i:143;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:144;a:2:{i:0;a:2:{s:45:\".wp-block-button .wp-block-button__link:hover\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}s:45:\".wp-block-button .wp-block-button__link:focus\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:145;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:8:{i:0;s:18:\"border-style:solid\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:10:\"color:#fff\";i:4;s:19:\"font-family:inherit\";i:5;s:19:\"font-weight:inherit\";i:6;s:13:\"line-height:1\";i:7;s:17:\"border-radius:2px\";}}i:146;a:2:{i:0;a:1:{s:57:\".wp-block-buttons .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:16:\"wp-block-buttons\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:15px\";i:1;s:18:\"padding-right:30px\";i:2;s:19:\"padding-bottom:15px\";i:3;s:17:\"padding-left:30px\";}}i:147;s:25:\"@media (max-width:921px){\";i:148;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:149;s:1:\"}\";i:150;s:25:\"@media (max-width:544px){\";i:151;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:152;s:1:\"}\";i:153;a:2:{i:0;a:11:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:106:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:16:{i:0;s:18:\"border-style:solid\";i:1;s:18:\"border-top-width:0\";i:2;s:20:\"border-right-width:0\";i:3;s:19:\"border-left-width:0\";i:4;s:21:\"border-bottom-width:0\";i:5;s:10:\"color:#fff\";i:6;s:38:\"border-color:var(--ast-global-color-0)\";i:7;s:42:\"background-color:var(--ast-global-color-0)\";i:8;s:17:\"border-radius:2px\";i:9;s:16:\"padding-top:15px\";i:10;s:18:\"padding-right:30px\";i:11;s:19:\"padding-bottom:15px\";i:12;s:17:\"padding-left:30px\";i:13;s:19:\"font-family:inherit\";i:14;s:19:\"font-weight:inherit\";i:15;s:13:\"line-height:1\";}}i:154;a:2:{i:0;a:18:{s:12:\"button:focus\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:18:\".menu-toggle:hover\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:12:\"button:hover\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:17:\".ast-button:hover\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:38:\".ast-custom-button:hover .button:hover\";a:1:{i:1;a:2:{i:0;s:17:\"ast-custom-button\";i:1;s:6:\"button\";}}s:24:\".ast-custom-button:hover\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:23:\"input[type=reset]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=reset]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:hover\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:focus\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:48:\"body .wp-block-file .wp-block-file__button:hover\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}s:48:\"body .wp-block-file .wp-block-file__button:focus\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:155;s:25:\"@media (min-width:544px){\";i:156;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:157;s:1:\"}\";i:158;s:25:\"@media (max-width:544px){\";i:159;a:2:{i:0;a:4:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}s:48:\".ast-separate-container .ast-archive-description\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:23:\"ast-archive-description\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:160;a:2:{i:0;a:1:{s:47:\".ast-separate-container #content .ast-container\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:2:{i:0;s:18:\"padding-left:.54em\";i:1;s:19:\"padding-right:.54em\";}}i:161;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:162;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:163;a:2:{i:0;a:1:{s:55:\".ast-search-menu-icon.ast-dropdown-active .search-field\";a:1:{i:1;a:3:{i:0;s:20:\"ast-search-menu-icon\";i:1;s:19:\"ast-dropdown-active\";i:2;s:12:\"search-field\";}}}i:1;a:1:{i:0;s:11:\"width:170px\";}}i:164;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:165;a:2:{i:0;a:1:{s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:166;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:19:\"margin-bottom:1.5em\";i:1;s:16:\"padding-left:1em\";i:2;s:17:\"padding-right:1em\";}}i:167;s:1:\"}\";i:168;s:25:\"@media (max-width:921px){\";i:169;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:170;a:2:{i:0;a:1:{s:63:\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-header-stack\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:171;a:2:{i:0;a:1:{s:113:\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:30:\"ast-header-custom-item-outside\";i:2;s:23:\"ast-mobile-header-stack\";i:3;s:15:\"main-header-bar\";i:4;s:15:\"ast-search-icon\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:172;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:173;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:174;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:175;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:176;s:1:\"}\";i:177;a:2:{i:0;a:4:{s:32:\".entry-content > .wp-block-group\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";}}s:37:\".entry-content > .wp-block-media-text\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:34:\".entry-content > .wp-block-columns\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";}}}i:1;a:4:{i:0;s:14:\"max-width:58em\";i:1;s:22:\"width:calc(100% - 4em)\";i:2;s:16:\"margin-left:auto\";i:3;s:17:\"margin-right:auto\";}}i:178;a:2:{i:0;a:1:{s:56:\".entry-content [class*=\"__inner-container\"] > .alignfull\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:14:\"max-width:100%\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:179;a:2:{i:0;a:1:{s:112:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:180;a:2:{i:0;a:1:{s:155:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:15:\"max-width:50rem\";i:1;s:10:\"width:100%\";}}i:181;s:25:\"@media (min-width:921px){\";i:182;a:2:{i:0;a:6:{s:57:\".entry-content > .wp-block-group.alignwide.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignwide\";i:3;s:14:\"has-background\";}}s:57:\".entry-content > .wp-block-group.alignfull.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignfull\";i:3;s:14:\"has-background\";}}s:42:\".entry-content > .wp-block-cover.alignwide\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignwide\";}}s:42:\".entry-content > .wp-block-cover.alignfull\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignfull\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignwide\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignwide\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignfull\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding:6em 4em\";}}i:183;a:2:{i:0;a:1:{s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:184;s:1:\"}\";i:185;s:26:\"@media (min-width:1200px){\";i:186;a:2:{i:0;a:1:{s:27:\".entry-content .alignfull p\";a:2:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"max-width:1200px\";}}i:187;a:2:{i:0;a:1:{s:25:\".entry-content .alignfull\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:10:\"width:100%\";}}i:188;a:2:{i:0;a:2:{s:52:\".ast-page-builder-template .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}s:56:\".entry-content [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignwide\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:189;a:2:{i:0;a:1:{s:67:\".entry-content .alignfull [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:15:\"max-width:80rem\";}}i:190;s:1:\"}\";i:191;s:25:\"@media (min-width:545px){\";i:192;a:2:{i:0;a:1:{s:38:\".site-main .entry-content > .alignwide\";a:1:{i:1;a:3:{i:0;s:9:\"site-main\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:193;a:2:{i:0;a:3:{s:30:\".wp-block-group.has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:3:{i:0;s:11:\"padding:4em\";i:1;s:12:\"margin-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:194;a:2:{i:0;a:2:{s:75:\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:9:\"alignfull\";i:3;s:28:\"wp-block-media-text__content\";}}s:80:\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:14:\"has-background\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:0 8%\";}}i:195;s:1:\"}\";i:196;s:25:\"@media (max-width:921px){\";i:197;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:198;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:199;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:200;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:201;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:202;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:203;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:204;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:205;s:1:\"}\";i:206;s:25:\"@media (max-width:544px){\";i:207;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:208;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:209;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:210;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:211;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:212;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:213;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:214;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:215;s:1:\"}\";i:216;s:25:\"@media (max-width:921px){\";i:217;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:218;s:1:\"}\";i:219;s:25:\"@media (max-width:544px){\";i:220;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:221;s:1:\"}\";i:222;s:25:\"@media (min-width:922px){\";i:223;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:16:\"max-width:1240px\";}}i:224;s:1:\"}\";i:225;s:25:\"@media (min-width:922px){\";i:226;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:227;s:1:\"}\";i:228;s:25:\"@media (max-width:921px){\";i:229;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:230;s:1:\"}\";i:231;s:25:\"@media (min-width:922px){\";i:232;a:2:{i:0;a:2:{s:80:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}s:87:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:16:\"margin-left:-0px\";}}i:233;s:1:\"}\";i:234;a:2:{i:0;a:1:{s:16:\".wp-block-search\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-search\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:20px\";}}i:235;a:2:{i:0;a:1:{s:22:\".wp-block-site-tagline\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-site-tagline\";}}}i:1;a:1:{i:0;s:15:\"margin-top:20px\";}}i:236;a:2:{i:0;a:2:{s:44:\"form.wp-block-search .wp-block-search__input\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}s:80:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";}}}i:1;a:2:{i:0;s:20:\"border-color:#eaeaea\";i:1;s:18:\"background:#fafafa\";}}i:237;a:2:{i:0;a:2:{s:110:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\";a:1:{i:1;a:4:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";i:3;s:22:\"wp-block-search__input\";}}s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:19:\"outline:thin dotted\";}}i:238;a:2:{i:0;a:1:{s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:24:\"border-color:transparent\";}}i:239;a:2:{i:0;a:1:{s:77:\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\";a:2:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}}i:1;a:1:{i:0;s:12:\"padding:12px\";}}i:240;a:2:{i:0;a:1:{s:49:\"form.wp-block-search .wp-block-search__button svg\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:23:\"wp-block-search__button\";}i:0;a:2:{i:0;s:4:\"form\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:17:\"fill:currentColor\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";}}i:241;a:2:{i:0;a:1:{s:26:\".wp-block-loginout p label\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:242;a:2:{i:0;a:1:{s:66:\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:243;a:2:{i:0;a:1:{s:40:\".wp-block-loginout .login-remember input\";a:2:{i:1;a:2:{i:0;s:17:\"wp-block-loginout\";i:1;s:14:\"login-remember\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:12:\"width:1.1rem\";i:1;s:13:\"height:1.1rem\";i:2;s:18:\"margin:0 5px 4px 0\";i:3;s:21:\"vertical-align:middle\";}}i:244;a:2:{i:0;a:1:{s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:245;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:21:\"padding:0 1.2em 1.2em\";}}i:246;a:2:{i:0;a:1:{s:14:\".wp-block-file\";a:1:{i:1;a:1:{i:0;s:13:\"wp-block-file\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";i:2;s:14:\"flex-wrap:wrap\";i:3;s:29:\"justify-content:space-between\";}}i:247;a:2:{i:0;a:1:{s:19:\".wp-block-pullquote\";a:1:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}}}i:1;a:1:{i:0;s:11:\"border:none\";}}i:248;a:2:{i:0;a:1:{s:38:\".wp-block-pullquote blockquote::before\";a:2:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:10:{i:0;s:13:\"content:\"”\"\";i:1;s:34:\"font-family:\"Helvetica\",sans-serif\";i:2;s:12:\"display:flex\";i:3;s:24:\"transform:rotate(180deg)\";i:4;s:14:\"font-size:6rem\";i:5;s:17:\"font-style:normal\";i:6;s:13:\"line-height:1\";i:7;s:16:\"font-weight:bold\";i:8;s:18:\"align-items:center\";i:9;s:22:\"justify-content:center\";}}i:249;a:2:{i:0;a:1:{s:57:\"figure.wp-block-pullquote.is-style-solid-color blockquote\";a:2:{i:1;a:2:{i:0;s:18:\"wp-block-pullquote\";i:1;s:20:\"is-style-solid-color\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"blockquote\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:18:\"text-align:inherit\";}}i:250;a:2:{i:0;a:2:{s:47:\"ul.wp-block-categories-list.wp-block-categories\";a:2:{i:1;a:2:{i:0;s:24:\"wp-block-categories-list\";i:1;s:19:\"wp-block-categories\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:43:\"ul.wp-block-archives-list.wp-block-archives\";a:2:{i:1;a:2:{i:0;s:22:\"wp-block-archives-list\";i:1;s:17:\"wp-block-archives\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:20:\"list-style-type:none\";}}i:251;a:2:{i:0;a:1:{s:22:\".wp-block-button__link\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:29:\"border:2px solid currentColor\";}}i:252;a:2:{i:0;a:2:{s:2:\"ul\";a:1:{i:0;a:1:{i:0;s:2:\"ul\";}}s:2:\"ol\";a:1:{i:0;a:1:{i:0;s:2:\"ol\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:253;a:2:{i:0;a:1:{s:28:\"figure.alignright figcaption\";a:2:{i:1;a:1:{i:0;s:10:\"alignright\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"figcaption\";}}}i:1;a:1:{i:0;s:16:\"text-align:right\";}}i:254;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-0-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:255;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-0-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:256;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-0-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:257;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-0-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:258;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-1-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:259;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-1-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:260;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-1-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:261;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-1-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:262;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-2-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:263;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-2-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:264;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-2-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:265;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-2-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:266;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-3-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:267;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-3-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:268;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-3-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:269;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-3-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:270;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-4-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:271;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-4-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:272;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-4-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:273;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-4-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:274;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-5-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:275;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-5-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:276;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-5-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:277;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-5-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:278;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-6-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:279;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-6-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:280;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-6-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:281;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-6-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:282;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-7-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:283;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-7-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:284;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-7-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:285;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-7-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:286;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-8-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:287;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-8-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:288;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-8-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:289;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-8-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:290;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:9:{i:0;s:28:\"--ast-global-color-0:#0170b9\";i:1;s:28:\"--ast-global-color-1:#3a3a3a\";i:2;s:28:\"--ast-global-color-2:#3a3a3a\";i:3;s:28:\"--ast-global-color-3:#4b4f58\";i:4;s:28:\"--ast-global-color-4:#f5f5f5\";i:5;s:25:\"--ast-global-color-5:#fff\";i:6;s:28:\"--ast-global-color-6:#f2f5f7\";i:7;s:28:\"--ast-global-color-7:#424242\";i:8;s:25:\"--ast-global-color-8:#000\";}}i:291;a:2:{i:0;a:3:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}s:32:\".ast-breadcrumbs .trail-items li\";a:2:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:8:\"margin:0\";i:2;s:9:\"padding:0\";i:3;s:11:\"border:none\";i:4;s:18:\"background:inherit\";i:5;s:13:\"text-indent:0\";}}i:292;a:2:{i:0;a:1:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}}i:1;a:4:{i:0;s:17:\"font-size:inherit\";i:1;s:18:\"font-style:inherit\";i:2;s:19:\"font-weight:inherit\";i:3;s:13:\"color:inherit\";}}i:293;a:2:{i:0;a:1:{s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:294;a:2:{i:0;a:1:{s:22:\".trail-items li::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:14:\"padding:0 .3em\";i:1;s:12:\"content:\"»\"\";}}i:295;a:2:{i:0;a:1:{s:35:\".trail-items li:last-of-type::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:296;a:2:{i:0;a:12:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:297;a:2:{i:0;a:1:{s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:298;s:25:\"@media (max-width:921px){\";i:299;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-tablet-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-tablet-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:300;s:1:\"}\";i:301;s:25:\"@media (max-width:544px){\";i:302;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-mobile-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-mobile-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:303;s:1:\"}\";i:304;a:2:{i:0;a:1:{s:57:\".ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:305;s:25:\"@media (max-width:921px){\";i:306;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:307;s:1:\"}\";i:308;s:25:\"@media (max-width:544px){\";i:309;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:310;s:1:\"}\";i:311;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:312;a:2:{i:0;a:2:{s:29:\".ast-builder-menu-1 .sub-menu\";a:1:{i:1;a:2:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:8:\"sub-menu\";}}s:47:\".ast-builder-menu-1 .inline-on-mobile .sub-menu\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"inline-on-mobile\";i:2;s:8:\"sub-menu\";}}}i:1;a:7:{i:0;s:20:\"border-top-width:2px\";i:1;s:23:\"border-bottom-width:0px\";i:2;s:22:\"border-right-width:0px\";i:3;s:21:\"border-left-width:0px\";i:4;s:38:\"border-color:var(--ast-global-color-0)\";i:5;s:18:\"border-style:solid\";i:6;s:17:\"border-radius:0px\";}}i:313;a:2:{i:0;a:2:{s:62:\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";}}s:81:\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:14:\"margin-top:0px\";}}i:314;a:2:{i:0;a:2:{s:82:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:101:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:22:\"height:calc(0px + 5px)\";}}i:315;a:2:{i:0;a:1:{s:64:\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:316;s:25:\"@media (max-width:921px){\";i:317;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:318;a:2:{i:0;a:1:{s:62:\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:22:\"menu-item-has-children\";i:2;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:319;s:1:\"}\";i:320;s:25:\"@media (max-width:544px){\";i:321;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:322;s:1:\"}\";i:323;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:324;s:25:\"@media (max-width:921px){\";i:325;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:326;s:1:\"}\";i:327;s:25:\"@media (max-width:544px){\";i:328;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:329;s:1:\"}\";i:330;a:2:{i:0;a:1:{s:23:\".site-below-footer-wrap\";a:1:{i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:16:\"padding-top:20px\";i:1;s:19:\"padding-bottom:20px\";}}i:331;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:21:\"background-color:#eee\";i:1;s:15:\"min-height:80px\";}}i:332;a:2:{i:0;a:1:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:333;a:2:{i:0;a:2:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}s:89:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:19:\"site-footer-section\";}}}i:1;a:1:{i:0;s:22:\"align-items:flex-start\";}}i:334;a:2:{i:0;a:1:{s:111:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:21:\"ast-footer-row-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:335;a:2:{i:0;a:1:{s:48:\".ast-builder-grid-row-full .ast-builder-grid-row\";a:1:{i:1;a:2:{i:0;s:25:\"ast-builder-grid-row-full\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:336;s:25:\"@media (max-width:921px){\";i:337;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-tablet-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:338;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-tablet-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:339;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-tablet-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:340;s:1:\"}\";i:341;s:25:\"@media (max-width:544px){\";i:342;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-mobile-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:343;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-mobile-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:344;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-mobile-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:345;s:1:\"}\";i:346;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:347;s:25:\"@media (max-width:921px){\";i:348;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:349;s:1:\"}\";i:350;s:25:\"@media (max-width:544px){\";i:351;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:352;s:1:\"}\";i:353;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:354;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:355;s:25:\"@media (max-width:921px){\";i:356;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:357;s:1:\"}\";i:358;s:25:\"@media (max-width:544px){\";i:359;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:360;s:1:\"}\";i:361;a:2:{i:0;a:1:{s:48:\".ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:20:\"ast-footer-copyright\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:362;s:25:\"@media (max-width:921px){\";i:363;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:364;s:1:\"}\";i:365;s:25:\"@media (max-width:544px){\";i:366;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:367;s:1:\"}\";i:368;s:25:\"@media (max-width:921px){\";i:369;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:370;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:371;a:2:{i:0;a:1:{s:60:\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-main-header-nav-open\";i:2;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:372;a:2:{i:0;a:1:{s:95:\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:29:\"ast-main-header-bar-alignment\";i:2;s:9:\"toggle-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:373;a:2:{i:0;a:1:{s:77:\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:7:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:8:\"border:0\";i:4;s:23:\"border-bottom-width:1px\";i:5;s:18:\"border-style:solid\";i:6;s:20:\"border-color:#eaeaea\";}}i:374;a:2:{i:0;a:1:{s:75:\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:375;a:2:{i:0;a:1:{s:73:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:376;a:2:{i:0;a:1:{s:97:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:377;a:2:{i:0;a:1:{s:114:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:378;a:2:{i:0;a:1:{s:106:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:379;a:2:{i:0;a:1:{s:112:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:380;a:2:{i:0;a:1:{s:81:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:381;a:2:{i:0;a:3:{s:30:\".ast-amp .ast-below-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-below-header-bar\";}}s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}s:30:\".ast-amp .ast-above-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-above-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:382;s:1:\"}\";i:383;s:25:\"@media (max-width:921px){\";i:384;a:2:{i:0;a:1:{s:49:\".site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:3:{i:0;s:11:\"site-header\";i:1;s:20:\"main-header-bar-wrap\";i:2;s:13:\"site-branding\";}}}i:1;a:9:{i:0;s:12:\"display:flex\";i:1;s:18:\"-webkit-box-flex:1\";i:2;s:14:\"-webkit-flex:1\";i:3;s:15:\"-moz-box-flex:1\";i:4;s:10:\"-ms-flex:1\";i:5;s:6:\"flex:1\";i:6;s:25:\"-webkit-align-self:center\";i:7;s:26:\"-ms-flex-item-align:center\";i:8;s:17:\"align-self:center\";}}i:385;a:2:{i:0;a:1:{s:68:\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:3:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";i:2;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:386;a:2:{i:0;a:1:{s:16:\".main-navigation\";a:1:{i:1;a:1:{i:0;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:387;a:2:{i:0;a:1:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:388;a:2:{i:0;a:1:{s:40:\".ast-main-header-bar-alignment.toggle-on\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:389;a:2:{i:0;a:1:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:15:\"text-align:left\";i:2;s:12:\"border-top:0\";}}i:390;a:2:{i:0;a:1:{s:27:\".main-header-bar-navigation\";a:1:{i:1;a:1:{i:0;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:23:\"width:calc(100% + 40px)\";i:1;s:14:\"margin:0 -20px\";}}i:391;a:2:{i:0;a:1:{s:62:\".main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:3:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:392;a:2:{i:0;a:1:{s:87:\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:4:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:13:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:34:\"-webkit-font-smoothing:antialiased\";i:7;s:33:\"-moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:26:\"-webkit-transition:all .2s\";i:12;s:18:\"transition:all .2s\";}}i:393;s:1:\"}\";i:394;s:25:\"@media (max-width:921px){\";i:395;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:396;s:1:\"}\";i:397;s:25:\"@media (max-width:921px){\";i:398;a:2:{i:0;a:1:{s:34:\".ast-amp .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:399;a:2:{i:0;a:1:{s:25:\".ast-amp .main-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:400;a:2:{i:0;a:2:{s:50:\".ast-amp .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:55:\".ast-amp .main-navigation ul .button-custom-menu-item a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:23:\"button-custom-menu-item\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:1:\"a\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:401;a:2:{i:0;a:1:{s:57:\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:402;a:2:{i:0;a:1:{s:68:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:403;a:2:{i:0;a:1:{s:90:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\";a:1:{i:1;a:8:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-item\";i:6;s:9:\"menu-item\";i:7;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:404;a:2:{i:0;a:1:{s:26:\".ast-amp .main-header-menu\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f9f9f9\";}}i:405;a:2:{i:0;a:1:{s:29:\".ast-amp .main-header-menu ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:6:{i:0;s:24:\"background-color:#f9f9f9\";i:1;s:15:\"position:static\";i:2;s:9:\"opacity:1\";i:3;s:18:\"visibility:visible\";i:4;s:8:\"border:0\";i:5;s:10:\"width:auto\";}}i:406;a:2:{i:0;a:2:{s:67:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}s:74:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:407;a:2:{i:0;a:2:{s:66:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}s:73:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:408;a:2:{i:0;a:1:{s:39:\".ast-amp .submenu-with-border .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:409;a:2:{i:0;a:1:{s:21:\".ast-amp .user-select\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:11:\"user-select\";}}}i:1;a:1:{i:0;s:10:\"clear:both\";}}i:410;a:2:{i:0;a:1:{s:33:\".ast-amp .ast-mobile-menu-buttons\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:23:\"ast-mobile-menu-buttons\";}}}i:1;a:7:{i:0;s:16:\"text-align:right\";i:1;s:12:\"display:flex\";i:2;s:20:\"-webkit-box-pack:end\";i:3;s:32:\"-webkit-justify-content:flex-end\";i:4;s:17:\"-moz-box-pack:end\";i:5;s:17:\"-ms-flex-pack:end\";i:6;s:24:\"justify-content:flex-end\";}}i:411;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:6:{i:0;s:18:\"-webkit-box-flex:1\";i:1;s:17:\"-webkit-flex:auto\";i:2;s:15:\"-moz-box-flex:1\";i:3;s:13:\"-ms-flex:auto\";i:4;s:9:\"flex:auto\";i:5;s:23:\"width:calc(100% + 40px)\";}}i:412;a:2:{i:0;a:1:{s:39:\".ast-amp .ast-main-header-bar-alignment\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:29:\"ast-main-header-bar-alignment\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:413;a:2:{i:0;a:1:{s:58:\".ast-amp .site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:11:\"site-header\";i:2;s:20:\"main-header-bar-wrap\";i:3;s:13:\"site-branding\";}}}i:1;a:10:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:14:\"-webkit-flex:1\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:10:\"-ms-flex:1\";i:6;s:6:\"flex:1\";i:7;s:25:\"-webkit-align-self:center\";i:8;s:26:\"-ms-flex-item-align:center\";i:9;s:17:\"align-self:center\";}}i:414;a:2:{i:0;a:1:{s:27:\".ast-amp .ast-site-identity\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"ast-site-identity\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:415;a:2:{i:0;a:1:{s:90:\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";i:4;s:9:\"sub-arrow\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:416;a:2:{i:0;a:1:{s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:417;a:2:{i:0;a:1:{s:58:\".ast-main-header-bar-alignment .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:418;a:2:{i:0;a:1:{s:65:\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:419;a:2:{i:0;a:1:{s:63:\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:420;a:2:{i:0;a:1:{s:87:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:421;a:2:{i:0;a:1:{s:104:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:422;a:2:{i:0;a:1:{s:96:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:423;a:2:{i:0;a:1:{s:102:\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:424;a:2:{i:0;a:1:{s:71:\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:425;a:2:{i:0;a:1:{s:45:\".ast-amp .main-navigation ul > li:first-child\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:426;a:2:{i:0;a:1:{s:31:\".ast-amp .main-navigation ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:2:{i:0;s:9:\"left:auto\";i:1;s:10:\"right:auto\";}}i:427;a:2:{i:0;a:1:{s:28:\".ast-amp .main-navigation li\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:428;a:2:{i:0;a:1:{s:33:\".ast-amp .main-navigation .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:429;a:2:{i:0;a:1:{s:36:\".ast-amp .main-navigation .widget li\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:auto\";}}i:430;a:2:{i:0;a:1:{s:44:\".ast-amp .main-navigation .widget:last-child\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:431;a:2:{i:0;a:1:{s:32:\".ast-amp .main-header-menu ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:432;a:2:{i:0;a:2:{s:54:\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:16:\"custom-logo-link\";}}s:52:\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:433;a:2:{i:0;a:1:{s:61:\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:23:\"custom-mobile-logo-link\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:434;a:2:{i:0;a:2:{s:85:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:16:\"custom-logo-link\";}}s:83:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:435;a:2:{i:0;a:1:{s:40:\".ast-amp .ast-header-widget-area .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:22:\"ast-header-widget-area\";i:2;s:6:\"widget\";}}}i:1;a:2:{i:0;s:13:\"margin:.5em 0\";i:1;s:13:\"display:block\";}}i:436;a:2:{i:0;a:1:{s:27:\".ast-amp .nav-fallback-text\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"nav-fallback-text\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:437;a:2:{i:0;a:1:{s:76:\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:28:\"woocommerce-custom-menu-item\";i:3;s:18:\"ast-cart-menu-wrap\";}}}i:1;a:3:{i:0;s:10:\"height:3em\";i:1;s:13:\"line-height:3\";i:2;s:15:\"text-align:left\";}}i:438;a:2:{i:0;a:1:{s:52:\".ast-amp #ast-site-header-cart .widget_shopping_cart\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"widget_shopping_cart\";}i:2;a:1:{i:0;s:20:\"ast-site-header-cart\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:439;a:2:{i:0;a:1:{s:58:\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\";a:1:{i:1;a:3:{i:0;s:9:\"ast-theme\";i:1;s:25:\"ast-woocommerce-cart-menu\";i:2;s:20:\"ast-site-header-cart\";}}}i:1;a:3:{i:0;s:13:\"order:initial\";i:1;s:13:\"line-height:3\";i:2;s:19:\"padding:0 1em 1em 0\";}}i:440;a:2:{i:0;a:2:{s:58:\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:22:\"widget_edd_cart_widget\";}}s:65:\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:29:\"ast-edd-header-cart-info-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:441;a:2:{i:0;a:1:{s:64:\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:30:\"ast-masthead-custom-menu-items\";i:2;s:20:\"edd-custom-menu-item\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:442;a:2:{i:0;a:1:{s:73:\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";i:3;s:12:\"slide-search\";i:4;s:11:\"search-form\";}}}i:1;a:1:{i:0;s:7:\"right:0\";}}i:443;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-menu .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:444;a:2:{i:0;a:1:{s:41:\".ast-amp .submenu-with-border .sub-menu a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:445;a:2:{i:0;a:1:{s:59:\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:446;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-buttons-minimal\";}}}i:1;a:2:{i:0;s:22:\"background:transparent\";i:1;s:11:\"border:none\";}}i:447;s:1:\"}\";i:448;a:2:{i:0;a:1:{s:40:\".ast-header-break-point .main-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:449;s:25:\"@media (min-width:922px){\";i:450;a:2:{i:0;a:1:{s:16:\".main-header-bar\";a:1:{i:1;a:1:{i:0;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:451;s:1:\"}\";i:452;s:25:\"@media (min-width:922px){\";i:453;a:2:{i:0;a:1:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"width:70%\";}}i:454;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"width:30%\";}}i:455;s:1:\"}\";i:456;a:2:{i:0;a:3:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}s:29:\"#astra-footer-menu .menu-item\";a:2:{i:1;a:1:{i:0;s:9:\"menu-item\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}s:48:\".main-header-bar .ast-masthead-custom-menu-items\";a:1:{i:1;a:2:{i:0;s:15:\"main-header-bar\";i:1;s:30:\"ast-masthead-custom-menu-items\";}}}i:1;a:14:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:23:\"-webkit-box-pack:center\";i:3;s:30:\"-webkit-justify-content:center\";i:4;s:20:\"-moz-box-pack:center\";i:5;s:20:\"-ms-flex-pack:center\";i:6;s:22:\"justify-content:center\";i:7;s:27:\"-webkit-box-orient:vertical\";i:8;s:28:\"-webkit-box-direction:normal\";i:9;s:29:\"-webkit-flex-direction:column\";i:10;s:24:\"-moz-box-orient:vertical\";i:11;s:25:\"-moz-box-direction:normal\";i:12;s:25:\"-ms-flex-direction:column\";i:13;s:21:\"flex-direction:column\";}}i:457;a:2:{i:0;a:2:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}s:44:\"#astra-footer-menu > .menu-item > .menu-link\";a:2:{i:1;a:2:{i:0;s:9:\"menu-item\";i:1;s:9:\"menu-link\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}}i:1;a:8:{i:0;s:11:\"height:100%\";i:1;s:24:\"-webkit-box-align:center\";i:2;s:26:\"-webkit-align-items:center\";i:3;s:21:\"-moz-box-align:center\";i:4;s:21:\"-ms-flex-align:center\";i:5;s:18:\"align-items:center\";i:6;s:16:\"-js-display:flex\";i:7;s:12:\"display:flex\";}}i:458;a:2:{i:0;a:1:{s:95:\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\";a:2:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";i:4;s:10:\"icon-arrow\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:3:\"svg\";}}}i:1;a:5:{i:0;s:8:\"top:.2em\";i:1;s:14:\"margin-top:0px\";i:2;s:15:\"margin-left:0px\";i:3;s:11:\"width:.65em\";i:4;s:43:\"transform:translate(0,-2px) rotateZ(270deg)\";}}i:459;a:2:{i:0;a:1:{s:66:\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\";a:1:{i:1;a:3:{i:0;s:24:\"ast-mobile-popup-content\";i:1;s:20:\"ast-submenu-expanded\";i:2;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:460;a:2:{i:0;a:3:{s:38:\".ast-separate-container .blog-layout-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-1\";}}s:38:\".ast-separate-container .blog-layout-2\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-2\";}}s:38:\".ast-separate-container .blog-layout-3\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-3\";}}}i:1;a:2:{i:0;s:28:\"background-color:transparent\";i:1;s:21:\"background-image:none\";}}i:461;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:462;s:25:\"@media (max-width:921px){\";i:463;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:464;s:1:\"}\";i:465;s:25:\"@media (max-width:544px){\";i:466;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:467;s:1:\"}\";i:468;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:469;s:25:\"@media (max-width:921px){\";i:470;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:471;s:1:\"}\";i:472;s:25:\"@media (max-width:544px){\";i:473;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:474;s:1:\"}\";i:475;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:476;s:25:\"@media (max-width:921px){\";i:477;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:478;s:1:\"}\";i:479;s:25:\"@media (max-width:544px){\";i:480;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:481;s:1:\"}\";i:482;a:2:{i:0;a:2:{s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:14:\"padding:10px 0\";i:1;s:11:\"height:auto\";}}i:483;a:2:{i:0;a:2:{s:42:\".ast-mobile-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:43:\".ast-desktop-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-top:10px\";}}i:484;a:2:{i:0;a:2:{s:46:\".ast-mobile-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:16:\"ast-builder-menu\";}}s:47:\".ast-desktop-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:16:\"ast-builder-menu\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:485;a:2:{i:0;a:2:{s:41:\".ast-mobile-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:42:\".ast-desktop-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:486;a:2:{i:0;a:2:{s:72:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}s:73:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:487;a:2:{i:0;a:1:{s:104:\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:20:\"ast-submenu-expanded\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:488;a:2:{i:0;a:6:{s:47:\"#ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:43:\".ast-mobile-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:15:\"ast-search-icon\";}}s:44:\".ast-desktop-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:15:\"ast-search-icon\";}}s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:95:\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}s:72:\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\";a:1:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:489;a:2:{i:0;a:2:{s:96:\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:99:\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:490;a:2:{i:0;a:6:{s:96:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:107:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:98:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:109:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:92:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:103:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}}i:1;a:2:{i:0;s:9:\"opacity:1\";i:1;s:18:\"visibility:visible\";}}i:491;a:2:{i:0;a:1:{s:141:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:12:\"margin:unset\";}}i:492;a:2:{i:0;a:2:{s:120:\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}s:121:\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:24:\"left:calc(20px - .907em)\";}}i:493;a:2:{i:0;a:4:{s:48:\".ast-mobile-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}s:49:\".ast-desktop-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}}i:1;a:5:{i:0;s:10:\"width:100%\";i:1;s:17:\"position:relative\";i:2;s:13:\"display:block\";i:3;s:10:\"right:auto\";i:4;s:14:\"transform:none\";}}i:494;a:2:{i:0;a:4:{s:74:\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}s:75:\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}}i:1;a:9:{i:0;s:7:\"right:0\";i:1;s:18:\"visibility:visible\";i:2;s:9:\"opacity:1\";i:3;s:17:\"position:relative\";i:4;s:8:\"top:auto\";i:5;s:14:\"transform:none\";i:6;s:9:\"padding:0\";i:7;s:13:\"display:block\";i:8;s:15:\"overflow:hidden\";}}i:495;a:2:{i:0;a:4:{s:80:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:62:\".ast-mobile-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}s:81:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:63:\".ast-desktop-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:19:\"padding-right:5.5em\";}}i:496;a:2:{i:0;a:2:{s:63:\".ast-mobile-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}s:64:\".ast-desktop-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}}i:1;a:7:{i:0;s:13:\"display:block\";i:1;s:17:\"position:absolute\";i:2;s:11:\"height:100%\";i:3;s:5:\"top:0\";i:4;s:7:\"right:0\";i:5;s:13:\"padding:0 1em\";i:6;s:15:\"border-radius:0\";}}i:497;a:2:{i:0;a:1:{s:165:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\";a:2:{i:1;a:8:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:498;a:2:{i:0;a:1:{s:184:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:10:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-item\";i:8;s:9:\"menu-item\";i:9;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:499;a:2:{i:0;a:1:{s:55:\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:22:\"ast-mobile-popup-inner\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:500;a:2:{i:0;a:2:{s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:27:\".ast-desktop-header-content\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:501;a:2:{i:0;a:4:{s:29:\".ast-mobile-popup-content > *\";a:1:{i:1;a:1:{i:0;s:24:\"ast-mobile-popup-content\";}}s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:30:\".ast-desktop-popup-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-desktop-popup-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:15:\"padding-top:0px\";i:1;s:18:\"padding-bottom:0px\";}}i:502;a:2:{i:0;a:1:{s:53:\".content-align-flex-start .ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:26:\"justify-content:flex-start\";}}i:503;a:2:{i:0;a:1:{s:43:\".content-align-flex-start .main-header-menu\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:15:\"text-align:left\";}}i:504;a:2:{i:0;a:1:{s:50:\".ast-mobile-popup-drawer.active .menu-toggle-close\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:17:\"menu-toggle-close\";}}}i:1;a:1:{i:0;s:13:\"color:#3a3a3a\";}}i:505;a:2:{i:0;a:2:{s:47:\".ast-mobile-header-wrap .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}}s:49:\".ast-primary-header-bar .site-primary-header-wrap\";a:1:{i:1;a:2:{i:0;s:22:\"ast-primary-header-bar\";i:1;s:24:\"site-primary-header-wrap\";}}}i:1;a:1:{i:0;s:15:\"min-height:70px\";}}i:506;a:2:{i:0;a:1:{s:67:\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\";a:1:{i:1;a:4:{i:0;s:11:\"ast-desktop\";i:1;s:22:\"ast-primary-header-bar\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";}}}i:1;a:1:{i:0;s:16:\"line-height:70px\";}}i:507;s:25:\"@media (max-width:921px){\";i:508;a:2:{i:0;a:2:{s:57:\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}s:55:\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:20:\"ast-below-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}}i:1;a:2:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";}}i:509;s:1:\"}\";i:510;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:511;s:25:\"@media (min-width:922px){\";i:512;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:513;s:1:\"}\";i:514;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:515;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:516;s:25:\"@media (max-width:921px){\";i:517;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:518;s:1:\"}\";i:519;s:25:\"@media (max-width:544px){\";i:520;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:521;s:1:\"}\";i:522;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-trigger-minimal\";}}}i:1;a:3:{i:0;s:31:\"color:var(--ast-global-color-0)\";i:1;s:11:\"border:none\";i:2;s:22:\"background:transparent\";}}i:523;a:2:{i:0;a:1:{s:104:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:23:\"mobile-menu-toggle-icon\";i:2;s:14:\"ast-mobile-svg\";}}}i:1;a:3:{i:0;s:10:\"width:20px\";i:1;s:11:\"height:20px\";i:2;s:30:\"fill:var(--ast-global-color-0)\";}}i:524;a:2:{i:0;a:1:{s:94:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:16:\"mobile-menu-wrap\";i:2;s:11:\"mobile-menu\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:525;a:2:{i:0;a:1:{s:65:\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:526;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:527;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:528;a:2:{i:0;a:3:{s:58:\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\";a:1:{i:1;a:3:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:16:\"main-header-menu\";}}s:79:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}s:89:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:529;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:530;s:25:\"@media (max-width:921px){\";i:531;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:532;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:533;s:1:\"}\";i:534;s:25:\"@media (max-width:544px){\";i:535;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:536;s:1:\"}\";i:537;a:2:{i:0;a:1:{s:41:\".ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:2:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:538;s:25:\"@media (max-width:921px){\";i:539;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:540;s:1:\"}\";i:541;s:25:\"@media (max-width:544px){\";i:542;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:543;s:1:\"}\";}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"872122ab820623adcc8e8a071c59baca\";s:10:\"parse_time\";d:0.10790610313415527;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(161458,'_transient_timeout_amp-parsed-stylesheet-v40-f4fcdedcfb3130d133069892f75772d2','1762297780','off'),
(161459,'_transient_amp-parsed-stylesheet-v40-f4fcdedcfb3130d133069892f75772d2','a:8:{s:6:\"tokens\";a:1:{i:0;a:2:{i:0;a:1:{s:31:\".amp-wp-cfb7f99:not(#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:14:\"amp-wp-cfb7f99\";}}}i:1;a:2:{i:0;s:15:\"font-weight:700\";i:1;s:17:\"text-align:center\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"543466e9eeee03221f33dbdaf8aacff6\";s:10:\"parse_time\";d:0.015434026718139648;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(161486,'_transient_timeout_amp-parsed-stylesheet-v40-632feaed6a9e26937810ba470755d8f0','1762310507','off'),
(161487,'_transient_amp-parsed-stylesheet-v40-632feaed6a9e26937810ba470755d8f0','a:8:{s:6:\"tokens\";a:549:{i:0;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:16:\"font-size:93.75%\";}}i:1;a:2:{i:0;a:2:{s:1:\"a\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:2;a:2:{i:0;a:2:{s:7:\"a:hover\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:7:\"a:focus\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:3;a:2:{i:0;a:7:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:5:\"input\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:6:\"select\";a:1:{i:0;a:1:{i:0;s:6:\"select\";}}s:8:\"textarea\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}}i:1;a:4:{i:0;s:115:\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\";i:1;s:19:\"font-weight:inherit\";i:2;s:14:\"font-size:15px\";i:3;s:14:\"font-size:1rem\";}}i:4;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:5;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:35px\";i:1;s:28:\"font-size:2.3333333333333rem\";i:2;s:13:\"display:block\";}}i:6;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:7;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";i:2;s:12:\"display:none\";}}i:8;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:9;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:10;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:11;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:2:{i:0;s:14:\"font-size:25px\";i:1;s:28:\"font-size:1.6666666666667rem\";}}i:12;a:2:{i:0;a:2:{s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:14:\"font-size:20px\";i:1;s:28:\"font-size:1.3333333333333rem\";}}i:13;a:2:{i:0;a:2:{s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}}i:1;a:2:{i:0;s:14:\"font-size:18px\";i:1;s:16:\"font-size:1.2rem\";}}i:14;a:2:{i:0;a:2:{s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:15;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:16;a:2:{i:0;a:1:{s:11:\"::selection\";a:0:{}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";i:1;s:10:\"color:#fff\";}}i:17;a:2:{i:0;a:14:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:18;a:2:{i:0;a:3:{s:17:\".tagcloud a:hover\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".tagcloud a:focus\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".tagcloud a.current-item\";a:2:{i:1;a:2:{i:0;s:8:\"tagcloud\";i:1;s:12:\"current-item\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";}}i:19;a:2:{i:0;a:8:{s:11:\"input:focus\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:24:\"input[type=\"text\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"email\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=\"url\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:28:\"input[type=\"password\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"reset\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"search\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:14:\"textarea:focus\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:20;a:2:{i:0;a:6:{s:27:\"input[type=\"radio\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"input[type=reset]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:30:\"input[type=\"checkbox\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:hover:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:focus:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:39:\"input[type=range]::-webkit-slider-thumb\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";i:1;s:42:\"background-color:var(--ast-global-color-0)\";i:2;s:15:\"box-shadow:none\";}}i:21;a:2:{i:0;a:2:{s:34:\".site-footer a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:34:\".site-footer a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:22;a:2:{i:0;a:2:{s:32:\".single .nav-links .nav-previous\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:12:\"nav-previous\";}}s:28:\".single .nav-links .nav-next\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:8:\"nav-next\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:23;a:2:{i:0;a:2:{s:11:\".entry-meta\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}s:13:\".entry-meta *\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}}i:1;a:2:{i:0;s:16:\"line-height:1.45\";i:1;s:31:\"color:var(--ast-global-color-0)\";}}i:24;a:2:{i:0;a:7:{s:19:\".entry-meta a:hover\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:hover *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:19:\".entry-meta a:focus\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:focus *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".page-links > .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:28:\".page-links .page-link:hover\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:24:\".post-navigation a:hover\";a:2:{i:1;a:1:{i:0;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:25;a:2:{i:0;a:3:{s:11:\"#cat option\";a:2:{i:2;a:1:{i:0;s:3:\"cat\";}i:0;a:1:{i:0;s:6:\"option\";}}s:33:\".secondary .calendar_wrap thead a\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}s:41:\".secondary .calendar_wrap thead a:visited\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:26;a:2:{i:0;a:2:{s:32:\".secondary .calendar_wrap #today\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}}s:22:\".ast-progress-val span\";a:2:{i:1;a:1:{i:0;s:16:\"ast-progress-val\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:36:\"background:var(--ast-global-color-0)\";}}i:27;a:2:{i:0;a:2:{s:32:\".secondary a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:32:\".secondary a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:28;a:2:{i:0;a:1:{s:25:\".calendar_wrap #today > a\";a:3:{i:1;a:1:{i:0;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:29;a:2:{i:0;a:2:{s:22:\".page-links .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:26:\".single .post-navigation a\";a:2:{i:1;a:2:{i:0;s:6:\"single\";i:1;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:30;a:2:{i:0;a:1:{s:18:\".ast-archive-title\";a:1:{i:1;a:1:{i:0;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:31;a:2:{i:0;a:1:{s:13:\".widget-title\";a:1:{i:1;a:1:{i:0;s:12:\"widget-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:21px\";i:1;s:16:\"font-size:1.4rem\";i:2;s:31:\"color:var(--ast-global-color-2)\";}}i:32;a:2:{i:0;a:5:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}s:17:\"#secondary button\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"button\";}}s:16:\"#secondary input\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"#secondary select\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"select\";}}s:19:\"#secondary textarea\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:33;a:2:{i:0;a:2:{s:33:\".ast-single-post .entry-content a\";a:2:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:58:\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\";a:2:{i:1;a:1:{i:0;s:19:\"ast-comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:34;a:2:{i:0;a:11:{s:56:\".ast-single-post .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}s:60:\".ast-single-post .elementor-button-wrapper .elementor-button\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:24:\"elementor-button-wrapper\";i:2;s:16:\"elementor-button\";}}s:43:\".ast-single-post .entry-content .uagb-tab a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:8:\"uagb-tab\";}i:0;a:1:{i:0;s:1:\"a\";}}s:47:\".ast-single-post .entry-content .uagb-ifb-cta a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:12:\"uagb-ifb-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:56:\".ast-single-post .entry-content .wp-block-uagb-buttons a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:21:\"wp-block-uagb-buttons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:54:\".ast-single-post .entry-content .uabb-module-content a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:19:\"uabb-module-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-post-grid a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-post-grid\";}i:0;a:1:{i:0;s:1:\"a\";}}s:48:\".ast-single-post .entry-content .uagb-timeline a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:13:\"uagb-timeline\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-toc__wrap a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-toc__wrap\";}i:0;a:1:{i:0;s:1:\"a\";}}s:52:\".ast-single-post .entry-content .uagb-taxomony-box a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:17:\"uagb-taxomony-box\";}i:0;a:1:{i:0;s:1:\"a\";}}s:46:\".ast-single-post .entry-content .woocommerce a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:11:\"woocommerce\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:35;a:2:{i:0;a:1:{s:37:\".ast-logo-title-inline .site-logo-img\";a:1:{i:1;a:2:{i:0;s:21:\"ast-logo-title-inline\";i:1;s:13:\"site-logo-img\";}}}i:1;a:1:{i:0;s:17:\"padding-right:1em\";}}i:36;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:18:\"margin:4em 0 2.5em\";i:1;s:21:\"word-break:break-word\";i:2;s:13:\"line-height:2\";}}i:37;a:2:{i:0;a:1:{s:13:\"#secondary li\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.25em\";}}i:38;a:2:{i:0;a:1:{s:24:\"#secondary li:last-child\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:39;s:26:\"@media (max-width: 768px){\";i:40;a:2:{i:0;a:1:{s:58:\".js_active .ast-plain-container.ast-single-post #secondary\";a:2:{i:1;a:3:{i:0;s:9:\"js_active\";i:1;s:19:\"ast-plain-container\";i:2;s:15:\"ast-single-post\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:41;s:1:\"}\";i:42;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:11:\"padding:2em\";i:2;s:17:\"margin-bottom:2em\";}}i:43;s:26:\"@media (min-width: 993px){\";i:44;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:60px\";}}i:45;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:46;s:1:\"}\";i:47;s:26:\"@media (max-width: 993px){\";i:48;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:49;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:30px\";}}i:50;s:1:\"}\";i:51;s:25:\"@media (max-width:921px){\";i:52;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:53;s:1:\"}\";i:54;s:25:\"@media (min-width:921px){\";i:55;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:56;s:1:\"}\";i:57;a:2:{i:0;a:1:{s:29:\".wp-block-buttons.aligncenter\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-buttons\";i:1;s:11:\"aligncenter\";}}}i:1;a:1:{i:0;s:22:\"justify-content:center\";}}i:58;s:26:\"@media (min-width:1200px){\";i:59;a:2:{i:0;a:1:{s:31:\".wp-block-group .has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:12:\"padding:20px\";}}i:60;s:1:\"}\";i:61;s:26:\"@media (min-width:1200px){\";i:62;a:2:{i:0;a:4:{s:64:\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:64:\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:63;s:1:\"}\";i:64;a:2:{i:0;a:1:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:unset\";}}i:65;a:2:{i:0;a:1:{s:25:\".wp-block-image.size-full\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-image\";i:1;s:9:\"size-full\";}}}i:1;a:1:{i:0;s:13:\"margin:2rem 0\";}}i:66;a:2:{i:0;a:1:{s:34:\".wp-block-separator.has-background\";a:1:{i:1;a:2:{i:0;s:18:\"wp-block-separator\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:67;a:2:{i:0;a:1:{s:17:\".wp-block-gallery\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-gallery\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.6em\";}}i:68;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:2:{i:0;s:15:\"padding-top:4em\";i:1;s:18:\"padding-bottom:4em\";}}i:69;a:2:{i:0;a:3:{s:61:\".wp-block-group__inner-container .wp-block-columns:last-child\";a:1:{i:1;a:2:{i:0;s:31:\"wp-block-group__inner-container\";i:1;s:16:\"wp-block-columns\";}}s:44:\".wp-block-group__inner-container :last-child\";a:1:{i:1;a:1:{i:0;s:31:\"wp-block-group__inner-container\";}}s:21:\".wp-block-table table\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-table\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:70;a:2:{i:0;a:1:{s:20:\".blocks-gallery-grid\";a:1:{i:1;a:1:{i:0;s:19:\"blocks-gallery-grid\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:71;a:2:{i:0;a:1:{s:34:\".wp-block-navigation-link__content\";a:1:{i:1;a:1:{i:0;s:33:\"wp-block-navigation-link__content\";}}}i:1;a:1:{i:0;s:13:\"padding:5px 0\";}}i:72;a:2:{i:0;a:2:{s:54:\".wp-block-group .wp-block-group .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";i:2;s:21:\"has-text-align-center\";}}s:55:\".wp-block-group .wp-block-column .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:15:\"wp-block-column\";i:2;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:73;a:2:{i:0;a:1:{s:22:\".has-text-align-center\";a:1:{i:1;a:1:{i:0;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:74;s:26:\"@media (max-width:1200px){\";i:75;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:3em\";}}i:76;a:2:{i:0;a:1:{s:31:\".wp-block-group .wp-block-group\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:13:\"padding:1.5em\";}}i:77;a:2:{i:0;a:2:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}s:16:\".wp-block-column\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-column\";}}}i:1;a:1:{i:0;s:13:\"margin:1rem 0\";}}i:78;s:1:\"}\";i:79;s:25:\"@media (min-width:921px){\";i:80;a:2:{i:0;a:1:{s:33:\".wp-block-columns .wp-block-group\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-columns\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:81;s:1:\"}\";i:82;s:25:\"@media (max-width:544px){\";i:83;a:2:{i:0;a:2:{s:54:\".wp-block-cover-image .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:20:\"wp-block-cover-image\";i:1;s:31:\"wp-block-cover__inner-container\";}}s:48:\".wp-block-cover .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-cover\";i:1;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:11:\"width:unset\";}}i:84;a:2:{i:0;a:2:{s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}s:21:\".wp-block-cover-image\";a:1:{i:1;a:1:{i:0;s:20:\"wp-block-cover-image\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:85;a:2:{i:0;a:2:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:86;a:2:{i:0;a:4:{s:35:\".wp-block-media-text__media amp-img\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:36:\".wp-block-media-text__media amp-anim\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:37:\".wp-block-media-text__media amp-video\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:9:\"amp-video\";}}s:39:\".wp-block-media-text__media amp-youtube\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:11:\"amp-youtube\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:14:\"max-width:100%\";}}i:87;a:2:{i:0;a:1:{s:65:\".wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:19:\"wp-block-media-text\";i:1;s:14:\"has-background\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:11:\"padding:1em\";}}i:88;s:1:\"}\";i:89;s:25:\"@media (min-width:544px){\";i:90;a:2:{i:0;a:1:{s:88:\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:22:\"has-media-on-the-right\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 8% 0 0\";}}i:91;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 0 0 8%\";}}i:92;a:2:{i:0;a:6:{s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-bottom-left\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-bottom-right\";}}s:103:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:20:\"is-position-top-left\";}}s:104:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:21:\"is-position-top-right\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-center-right\";}}s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-center-left\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:93;s:1:\"}\";i:94;s:25:\"@media (max-width:544px){\";i:95;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:8% 0\";}}i:96;a:2:{i:0;a:2:{s:56:\".wp-block-media-text .wp-block-media-text__media amp-img\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:57:\".wp-block-media-text .wp-block-media-text__media amp-anim\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:10:\"width:auto\";i:1;s:14:\"max-width:100%\";}}i:97;s:1:\"}\";i:98;a:2:{i:0;a:1:{s:56:\".wp-block-button.is-style-outline .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:99;a:2:{i:0;a:2:{s:79:\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:76:\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";i:2;s:16:\"is-style-outline\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:100;a:2:{i:0;a:2:{s:62:\".wp-block-button.is-style-outline .wp-block-button__link:hover\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:62:\".wp-block-button.is-style-outline .wp-block-button__link:focus\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";i:1;s:38:\"border-color:var(--ast-global-color-1)\";}}i:101;a:2:{i:0;a:2:{s:82:\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:82:\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:102;a:2:{i:0;a:2:{s:37:\".post-page-numbers.current .page-link\";a:1:{i:1;a:3:{i:0;s:17:\"post-page-numbers\";i:1;s:7:\"current\";i:2;s:9:\"page-link\";}}s:37:\".ast-pagination .page-numbers.current\";a:1:{i:1;a:3:{i:0;s:14:\"ast-pagination\";i:1;s:12:\"page-numbers\";i:2;s:7:\"current\";}}}i:1;a:4:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:17:\"border-radius:2px\";}}i:103;s:25:\"@media (min-width:544px){\";i:104;a:2:{i:0;a:1:{s:27:\".entry-content > .alignleft\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignleft\";}}}i:1;a:1:{i:0;s:17:\"margin-right:20px\";}}i:105;a:2:{i:0;a:1:{s:28:\".entry-content > .alignright\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:10:\"alignright\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:106;s:1:\"}\";i:107;a:2:{i:0;a:1:{s:15:\"h1.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:108;a:2:{i:0;a:1:{s:15:\"h2.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:109;a:2:{i:0;a:1:{s:15:\"h3.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:110;s:25:\"@media (max-width:921px){\";i:111;a:2:{i:0;a:2:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:112;a:2:{i:0;a:2:{s:32:\".ast-separate-container #primary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding:1.5em 0\";}}i:113;a:2:{i:0;a:2:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:15:\"padding:1.5em 0\";i:1;s:8:\"margin:0\";}}i:114;a:2:{i:0;a:1:{s:43:\".ast-left-sidebar #content > .ast-container\";a:2:{i:1;a:2:{i:0;s:16:\"ast-left-sidebar\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:29:\"flex-direction:column-reverse\";i:2;s:10:\"width:100%\";}}i:115;a:2:{i:0;a:2:{s:30:\".ast-author-box amp-img.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:31:\".ast-author-box amp-anim.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"margin:20px 0 0 0\";}}i:116;s:1:\"}\";i:117;s:25:\"@media (min-width:921px){\";i:118;a:2:{i:0;a:2:{s:30:\".ast-author-box amp-img.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:31:\".ast-author-box amp-anim.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"margin:20px 0 0 0\";}}i:119;s:1:\"}\";i:120;s:25:\"@media (max-width:921px){\";i:121;a:2:{i:0;a:1:{s:20:\"#secondary.secondary\";a:2:{i:1;a:1:{i:0;s:9:\"secondary\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:122;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:16:\"padding-left:1em\";i:1;s:17:\"padding-right:1em\";}}i:123;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-two-container #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:14:\"padding-left:0\";i:1;s:15:\"padding-right:0\";}}i:124;a:2:{i:0;a:2:{s:51:\".ast-page-builder-template .entry-header #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:12:\"entry-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:37:\".ast-page-builder-template #secondary\";a:2:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:125;s:1:\"}\";i:126;s:25:\"@media (max-width:921px){\";i:127;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:128;a:2:{i:0;a:2:{s:54:\".ast-page-builder-template.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:55:\".ast-page-builder-template.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:20px\";i:1;s:17:\"padding-left:20px\";}}i:129;a:2:{i:0;a:2:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:14:\"padding-left:0\";}}i:130;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:131;s:1:\"}\";i:132;s:25:\"@media (min-width:922px){\";i:133;a:2:{i:0;a:2:{s:50:\".ast-separate-container.ast-right-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:49:\".ast-separate-container.ast-left-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:134;a:2:{i:0;a:1:{s:50:\".search-no-results.ast-separate-container #primary\";a:2:{i:1;a:2:{i:0;s:17:\"search-no-results\";i:1;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:4em\";}}i:135;a:2:{i:0;a:1:{s:15:\".ast-author-box\";a:1:{i:1;a:1:{i:0;s:14:\"ast-author-box\";}}}i:1;a:2:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";}}i:136;a:2:{i:0;a:1:{s:15:\".ast-author-bio\";a:1:{i:1;a:1:{i:0;s:14:\"ast-author-bio\";}}}i:1;a:1:{i:0;s:6:\"flex:1\";}}i:137;s:1:\"}\";i:138;s:25:\"@media (min-width:922px){\";i:139;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:27:\"border-right:1px solid #eee\";}}i:140;a:2:{i:0;a:1:{s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:26:\"border-left:1px solid #eee\";}}i:141;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:26:\"border-left:1px solid #eee\";i:1;s:16:\"margin-left:-1px\";}}i:142;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:27:\"border-right:1px solid #eee\";i:1;s:17:\"margin-right:-1px\";}}i:143;a:2:{i:0;a:1:{s:70:\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:17:\"padding-left:30px\";i:1;s:15:\"padding-right:0\";}}i:144;a:2:{i:0;a:1:{s:69:\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:30px\";i:1;s:14:\"padding-left:0\";}}i:145;a:2:{i:0;a:2:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:51:\".ast-separate-container.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:146;a:2:{i:0;a:1:{s:71:\".ast-separate-container.ast-two-container #secondary .widget:last-child\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:147;s:1:\"}\";i:148;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:149;a:2:{i:0;a:2:{s:45:\".wp-block-button .wp-block-button__link:hover\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}s:45:\".wp-block-button .wp-block-button__link:focus\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:150;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:8:{i:0;s:18:\"border-style:solid\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:10:\"color:#fff\";i:4;s:19:\"font-family:inherit\";i:5;s:19:\"font-weight:inherit\";i:6;s:13:\"line-height:1\";i:7;s:17:\"border-radius:2px\";}}i:151;a:2:{i:0;a:1:{s:57:\".wp-block-buttons .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:16:\"wp-block-buttons\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:15px\";i:1;s:18:\"padding-right:30px\";i:2;s:19:\"padding-bottom:15px\";i:3;s:17:\"padding-left:30px\";}}i:152;s:25:\"@media (max-width:921px){\";i:153;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:154;s:1:\"}\";i:155;s:25:\"@media (max-width:544px){\";i:156;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:157;s:1:\"}\";i:158;a:2:{i:0;a:11:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:106:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:16:{i:0;s:18:\"border-style:solid\";i:1;s:18:\"border-top-width:0\";i:2;s:20:\"border-right-width:0\";i:3;s:19:\"border-left-width:0\";i:4;s:21:\"border-bottom-width:0\";i:5;s:10:\"color:#fff\";i:6;s:38:\"border-color:var(--ast-global-color-0)\";i:7;s:42:\"background-color:var(--ast-global-color-0)\";i:8;s:17:\"border-radius:2px\";i:9;s:16:\"padding-top:15px\";i:10;s:18:\"padding-right:30px\";i:11;s:19:\"padding-bottom:15px\";i:12;s:17:\"padding-left:30px\";i:13;s:19:\"font-family:inherit\";i:14;s:19:\"font-weight:inherit\";i:15;s:13:\"line-height:1\";}}i:159;a:2:{i:0;a:18:{s:12:\"button:focus\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:18:\".menu-toggle:hover\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:12:\"button:hover\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:17:\".ast-button:hover\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:38:\".ast-custom-button:hover .button:hover\";a:1:{i:1;a:2:{i:0;s:17:\"ast-custom-button\";i:1;s:6:\"button\";}}s:24:\".ast-custom-button:hover\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:23:\"input[type=reset]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=reset]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:hover\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:focus\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:48:\"body .wp-block-file .wp-block-file__button:hover\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}s:48:\"body .wp-block-file .wp-block-file__button:focus\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:160;s:25:\"@media (min-width:544px){\";i:161;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:162;s:1:\"}\";i:163;s:25:\"@media (max-width:544px){\";i:164;a:2:{i:0;a:4:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}s:48:\".ast-separate-container .ast-archive-description\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:23:\"ast-archive-description\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:165;a:2:{i:0;a:1:{s:47:\".ast-separate-container #content .ast-container\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:2:{i:0;s:18:\"padding-left:.54em\";i:1;s:19:\"padding-right:.54em\";}}i:166;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:167;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:168;a:2:{i:0;a:1:{s:55:\".ast-search-menu-icon.ast-dropdown-active .search-field\";a:1:{i:1;a:3:{i:0;s:20:\"ast-search-menu-icon\";i:1;s:19:\"ast-dropdown-active\";i:2;s:12:\"search-field\";}}}i:1;a:1:{i:0;s:11:\"width:170px\";}}i:169;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:170;a:2:{i:0;a:1:{s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:171;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:19:\"margin-bottom:1.5em\";i:1;s:16:\"padding-left:1em\";i:2;s:17:\"padding-right:1em\";}}i:172;s:1:\"}\";i:173;s:25:\"@media (max-width:921px){\";i:174;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:175;a:2:{i:0;a:1:{s:63:\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-header-stack\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:176;a:2:{i:0;a:1:{s:113:\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:30:\"ast-header-custom-item-outside\";i:2;s:23:\"ast-mobile-header-stack\";i:3;s:15:\"main-header-bar\";i:4;s:15:\"ast-search-icon\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:177;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:178;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:179;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:180;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:181;s:1:\"}\";i:182;a:2:{i:0;a:4:{s:32:\".entry-content > .wp-block-group\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";}}s:37:\".entry-content > .wp-block-media-text\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:34:\".entry-content > .wp-block-columns\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";}}}i:1;a:4:{i:0;s:14:\"max-width:58em\";i:1;s:22:\"width:calc(100% - 4em)\";i:2;s:16:\"margin-left:auto\";i:3;s:17:\"margin-right:auto\";}}i:183;a:2:{i:0;a:1:{s:56:\".entry-content [class*=\"__inner-container\"] > .alignfull\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:14:\"max-width:100%\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:184;a:2:{i:0;a:1:{s:112:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:185;a:2:{i:0;a:1:{s:155:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:15:\"max-width:50rem\";i:1;s:10:\"width:100%\";}}i:186;s:25:\"@media (min-width:921px){\";i:187;a:2:{i:0;a:6:{s:57:\".entry-content > .wp-block-group.alignwide.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignwide\";i:3;s:14:\"has-background\";}}s:57:\".entry-content > .wp-block-group.alignfull.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignfull\";i:3;s:14:\"has-background\";}}s:42:\".entry-content > .wp-block-cover.alignwide\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignwide\";}}s:42:\".entry-content > .wp-block-cover.alignfull\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignfull\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignwide\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignwide\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignfull\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding:6em 4em\";}}i:188;a:2:{i:0;a:1:{s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:189;s:1:\"}\";i:190;s:26:\"@media (min-width:1200px){\";i:191;a:2:{i:0;a:1:{s:27:\".entry-content .alignfull p\";a:2:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"max-width:1200px\";}}i:192;a:2:{i:0;a:1:{s:25:\".entry-content .alignfull\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:10:\"width:100%\";}}i:193;a:2:{i:0;a:2:{s:52:\".ast-page-builder-template .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}s:56:\".entry-content [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignwide\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:194;a:2:{i:0;a:1:{s:67:\".entry-content .alignfull [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:15:\"max-width:80rem\";}}i:195;s:1:\"}\";i:196;s:25:\"@media (min-width:545px){\";i:197;a:2:{i:0;a:1:{s:38:\".site-main .entry-content > .alignwide\";a:1:{i:1;a:3:{i:0;s:9:\"site-main\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:198;a:2:{i:0;a:3:{s:30:\".wp-block-group.has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:3:{i:0;s:11:\"padding:4em\";i:1;s:12:\"margin-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:199;a:2:{i:0;a:2:{s:75:\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:9:\"alignfull\";i:3;s:28:\"wp-block-media-text__content\";}}s:80:\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:14:\"has-background\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:0 8%\";}}i:200;s:1:\"}\";i:201;s:25:\"@media (max-width:921px){\";i:202;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:203;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:204;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:205;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:206;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:207;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:208;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:209;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:210;s:1:\"}\";i:211;s:25:\"@media (max-width:544px){\";i:212;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:213;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:214;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:215;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:216;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:217;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:218;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:219;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:220;s:1:\"}\";i:221;s:25:\"@media (max-width:921px){\";i:222;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:223;s:1:\"}\";i:224;s:25:\"@media (max-width:544px){\";i:225;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:226;s:1:\"}\";i:227;s:25:\"@media (min-width:922px){\";i:228;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:16:\"max-width:1240px\";}}i:229;s:1:\"}\";i:230;s:25:\"@media (min-width:922px){\";i:231;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:232;s:1:\"}\";i:233;s:25:\"@media (max-width:921px){\";i:234;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:235;s:1:\"}\";i:236;s:25:\"@media (min-width:922px){\";i:237;a:2:{i:0;a:2:{s:80:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}s:87:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:16:\"margin-left:-0px\";}}i:238;s:1:\"}\";i:239;a:2:{i:0;a:1:{s:16:\".wp-block-search\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-search\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:20px\";}}i:240;a:2:{i:0;a:1:{s:22:\".wp-block-site-tagline\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-site-tagline\";}}}i:1;a:1:{i:0;s:15:\"margin-top:20px\";}}i:241;a:2:{i:0;a:2:{s:44:\"form.wp-block-search .wp-block-search__input\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}s:80:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";}}}i:1;a:2:{i:0;s:20:\"border-color:#eaeaea\";i:1;s:18:\"background:#fafafa\";}}i:242;a:2:{i:0;a:2:{s:110:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\";a:1:{i:1;a:4:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";i:3;s:22:\"wp-block-search__input\";}}s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:19:\"outline:thin dotted\";}}i:243;a:2:{i:0;a:1:{s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:24:\"border-color:transparent\";}}i:244;a:2:{i:0;a:1:{s:77:\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\";a:2:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}}i:1;a:1:{i:0;s:12:\"padding:12px\";}}i:245;a:2:{i:0;a:1:{s:49:\"form.wp-block-search .wp-block-search__button svg\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:23:\"wp-block-search__button\";}i:0;a:2:{i:0;s:4:\"form\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:17:\"fill:currentColor\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";}}i:246;a:2:{i:0;a:1:{s:26:\".wp-block-loginout p label\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:247;a:2:{i:0;a:1:{s:66:\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:248;a:2:{i:0;a:1:{s:40:\".wp-block-loginout .login-remember input\";a:2:{i:1;a:2:{i:0;s:17:\"wp-block-loginout\";i:1;s:14:\"login-remember\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:12:\"width:1.1rem\";i:1;s:13:\"height:1.1rem\";i:2;s:18:\"margin:0 5px 4px 0\";i:3;s:21:\"vertical-align:middle\";}}i:249;a:2:{i:0;a:1:{s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:250;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:21:\"padding:0 1.2em 1.2em\";}}i:251;a:2:{i:0;a:1:{s:14:\".wp-block-file\";a:1:{i:1;a:1:{i:0;s:13:\"wp-block-file\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";i:2;s:14:\"flex-wrap:wrap\";i:3;s:29:\"justify-content:space-between\";}}i:252;a:2:{i:0;a:1:{s:19:\".wp-block-pullquote\";a:1:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}}}i:1;a:1:{i:0;s:11:\"border:none\";}}i:253;a:2:{i:0;a:1:{s:38:\".wp-block-pullquote blockquote::before\";a:2:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:10:{i:0;s:13:\"content:\"”\"\";i:1;s:34:\"font-family:\"Helvetica\",sans-serif\";i:2;s:12:\"display:flex\";i:3;s:24:\"transform:rotate(180deg)\";i:4;s:14:\"font-size:6rem\";i:5;s:17:\"font-style:normal\";i:6;s:13:\"line-height:1\";i:7;s:16:\"font-weight:bold\";i:8;s:18:\"align-items:center\";i:9;s:22:\"justify-content:center\";}}i:254;a:2:{i:0;a:1:{s:57:\"figure.wp-block-pullquote.is-style-solid-color blockquote\";a:2:{i:1;a:2:{i:0;s:18:\"wp-block-pullquote\";i:1;s:20:\"is-style-solid-color\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"blockquote\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:18:\"text-align:inherit\";}}i:255;a:2:{i:0;a:2:{s:47:\"ul.wp-block-categories-list.wp-block-categories\";a:2:{i:1;a:2:{i:0;s:24:\"wp-block-categories-list\";i:1;s:19:\"wp-block-categories\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:43:\"ul.wp-block-archives-list.wp-block-archives\";a:2:{i:1;a:2:{i:0;s:22:\"wp-block-archives-list\";i:1;s:17:\"wp-block-archives\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:20:\"list-style-type:none\";}}i:256;a:2:{i:0;a:1:{s:22:\".wp-block-button__link\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:29:\"border:2px solid currentColor\";}}i:257;a:2:{i:0;a:2:{s:2:\"ul\";a:1:{i:0;a:1:{i:0;s:2:\"ul\";}}s:2:\"ol\";a:1:{i:0;a:1:{i:0;s:2:\"ol\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:258;a:2:{i:0;a:1:{s:28:\"figure.alignright figcaption\";a:2:{i:1;a:1:{i:0;s:10:\"alignright\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"figcaption\";}}}i:1;a:1:{i:0;s:16:\"text-align:right\";}}i:259;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-0-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:260;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-0-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:261;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-0-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:262;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-0-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:263;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-1-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:264;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-1-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:265;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-1-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:266;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-1-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:267;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-2-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:268;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-2-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:269;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-2-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:270;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-2-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:271;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-3-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:272;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-3-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:273;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-3-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:274;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-3-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:275;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-4-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:276;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-4-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:277;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-4-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:278;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-4-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:279;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-5-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:280;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-5-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:281;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-5-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:282;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-5-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:283;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-6-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:284;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-6-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:285;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-6-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:286;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-6-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:287;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-7-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:288;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-7-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:289;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-7-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:290;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-7-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:291;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-8-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:292;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-8-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:293;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-8-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:294;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-8-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:295;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:9:{i:0;s:28:\"--ast-global-color-0:#0170b9\";i:1;s:28:\"--ast-global-color-1:#3a3a3a\";i:2;s:28:\"--ast-global-color-2:#3a3a3a\";i:3;s:28:\"--ast-global-color-3:#4b4f58\";i:4;s:28:\"--ast-global-color-4:#f5f5f5\";i:5;s:25:\"--ast-global-color-5:#fff\";i:6;s:28:\"--ast-global-color-6:#f2f5f7\";i:7;s:28:\"--ast-global-color-7:#424242\";i:8;s:25:\"--ast-global-color-8:#000\";}}i:296;a:2:{i:0;a:3:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}s:32:\".ast-breadcrumbs .trail-items li\";a:2:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:8:\"margin:0\";i:2;s:9:\"padding:0\";i:3;s:11:\"border:none\";i:4;s:18:\"background:inherit\";i:5;s:13:\"text-indent:0\";}}i:297;a:2:{i:0;a:1:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}}i:1;a:4:{i:0;s:17:\"font-size:inherit\";i:1;s:18:\"font-style:inherit\";i:2;s:19:\"font-weight:inherit\";i:3;s:13:\"color:inherit\";}}i:298;a:2:{i:0;a:1:{s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:299;a:2:{i:0;a:1:{s:22:\".trail-items li::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:14:\"padding:0 .3em\";i:1;s:12:\"content:\"»\"\";}}i:300;a:2:{i:0;a:1:{s:35:\".trail-items li:last-of-type::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:301;a:2:{i:0;a:12:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:302;a:2:{i:0;a:1:{s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:303;s:25:\"@media (max-width:921px){\";i:304;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-tablet-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-tablet-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:305;s:1:\"}\";i:306;s:25:\"@media (max-width:544px){\";i:307;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-mobile-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-mobile-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:308;s:1:\"}\";i:309;a:2:{i:0;a:1:{s:57:\".ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:310;s:25:\"@media (max-width:921px){\";i:311;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:312;s:1:\"}\";i:313;s:25:\"@media (max-width:544px){\";i:314;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:315;s:1:\"}\";i:316;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:317;a:2:{i:0;a:2:{s:29:\".ast-builder-menu-1 .sub-menu\";a:1:{i:1;a:2:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:8:\"sub-menu\";}}s:47:\".ast-builder-menu-1 .inline-on-mobile .sub-menu\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"inline-on-mobile\";i:2;s:8:\"sub-menu\";}}}i:1;a:7:{i:0;s:20:\"border-top-width:2px\";i:1;s:23:\"border-bottom-width:0px\";i:2;s:22:\"border-right-width:0px\";i:3;s:21:\"border-left-width:0px\";i:4;s:38:\"border-color:var(--ast-global-color-0)\";i:5;s:18:\"border-style:solid\";i:6;s:17:\"border-radius:0px\";}}i:318;a:2:{i:0;a:2:{s:62:\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";}}s:81:\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:14:\"margin-top:0px\";}}i:319;a:2:{i:0;a:2:{s:82:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:101:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:22:\"height:calc(0px + 5px)\";}}i:320;a:2:{i:0;a:1:{s:64:\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:321;s:25:\"@media (max-width:921px){\";i:322;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:323;a:2:{i:0;a:1:{s:62:\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:22:\"menu-item-has-children\";i:2;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:324;s:1:\"}\";i:325;s:25:\"@media (max-width:544px){\";i:326;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:327;s:1:\"}\";i:328;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:329;s:25:\"@media (max-width:921px){\";i:330;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:331;s:1:\"}\";i:332;s:25:\"@media (max-width:544px){\";i:333;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:334;s:1:\"}\";i:335;a:2:{i:0;a:1:{s:23:\".site-below-footer-wrap\";a:1:{i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:16:\"padding-top:20px\";i:1;s:19:\"padding-bottom:20px\";}}i:336;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:21:\"background-color:#eee\";i:1;s:15:\"min-height:80px\";}}i:337;a:2:{i:0;a:1:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:338;a:2:{i:0;a:2:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}s:89:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:19:\"site-footer-section\";}}}i:1;a:1:{i:0;s:22:\"align-items:flex-start\";}}i:339;a:2:{i:0;a:1:{s:111:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:21:\"ast-footer-row-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:340;a:2:{i:0;a:1:{s:48:\".ast-builder-grid-row-full .ast-builder-grid-row\";a:1:{i:1;a:2:{i:0;s:25:\"ast-builder-grid-row-full\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:341;s:25:\"@media (max-width:921px){\";i:342;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-tablet-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:343;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-tablet-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:344;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-tablet-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:345;s:1:\"}\";i:346;s:25:\"@media (max-width:544px){\";i:347;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-mobile-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:348;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-mobile-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:349;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-mobile-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:350;s:1:\"}\";i:351;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:352;s:25:\"@media (max-width:921px){\";i:353;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:354;s:1:\"}\";i:355;s:25:\"@media (max-width:544px){\";i:356;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:357;s:1:\"}\";i:358;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:359;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:360;s:25:\"@media (max-width:921px){\";i:361;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:362;s:1:\"}\";i:363;s:25:\"@media (max-width:544px){\";i:364;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:365;s:1:\"}\";i:366;a:2:{i:0;a:1:{s:48:\".ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:20:\"ast-footer-copyright\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:367;s:25:\"@media (max-width:921px){\";i:368;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:369;s:1:\"}\";i:370;s:25:\"@media (max-width:544px){\";i:371;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:372;s:1:\"}\";i:373;s:25:\"@media (max-width:921px){\";i:374;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:375;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:376;a:2:{i:0;a:1:{s:60:\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-main-header-nav-open\";i:2;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:377;a:2:{i:0;a:1:{s:95:\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:29:\"ast-main-header-bar-alignment\";i:2;s:9:\"toggle-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:378;a:2:{i:0;a:1:{s:77:\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:7:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:8:\"border:0\";i:4;s:23:\"border-bottom-width:1px\";i:5;s:18:\"border-style:solid\";i:6;s:20:\"border-color:#eaeaea\";}}i:379;a:2:{i:0;a:1:{s:75:\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:380;a:2:{i:0;a:1:{s:73:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:381;a:2:{i:0;a:1:{s:97:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:382;a:2:{i:0;a:1:{s:114:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:383;a:2:{i:0;a:1:{s:106:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:384;a:2:{i:0;a:1:{s:112:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:385;a:2:{i:0;a:1:{s:81:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:386;a:2:{i:0;a:3:{s:30:\".ast-amp .ast-below-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-below-header-bar\";}}s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}s:30:\".ast-amp .ast-above-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-above-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:387;s:1:\"}\";i:388;s:25:\"@media (max-width:921px){\";i:389;a:2:{i:0;a:1:{s:49:\".site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:3:{i:0;s:11:\"site-header\";i:1;s:20:\"main-header-bar-wrap\";i:2;s:13:\"site-branding\";}}}i:1;a:9:{i:0;s:12:\"display:flex\";i:1;s:18:\"-webkit-box-flex:1\";i:2;s:14:\"-webkit-flex:1\";i:3;s:15:\"-moz-box-flex:1\";i:4;s:10:\"-ms-flex:1\";i:5;s:6:\"flex:1\";i:6;s:25:\"-webkit-align-self:center\";i:7;s:26:\"-ms-flex-item-align:center\";i:8;s:17:\"align-self:center\";}}i:390;a:2:{i:0;a:1:{s:68:\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:3:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";i:2;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:391;a:2:{i:0;a:1:{s:16:\".main-navigation\";a:1:{i:1;a:1:{i:0;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:392;a:2:{i:0;a:1:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:393;a:2:{i:0;a:1:{s:40:\".ast-main-header-bar-alignment.toggle-on\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:394;a:2:{i:0;a:1:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:15:\"text-align:left\";i:2;s:12:\"border-top:0\";}}i:395;a:2:{i:0;a:1:{s:27:\".main-header-bar-navigation\";a:1:{i:1;a:1:{i:0;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:23:\"width:calc(100% + 40px)\";i:1;s:14:\"margin:0 -20px\";}}i:396;a:2:{i:0;a:1:{s:62:\".main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:3:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:397;a:2:{i:0;a:1:{s:87:\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:4:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:13:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:34:\"-webkit-font-smoothing:antialiased\";i:7;s:33:\"-moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:26:\"-webkit-transition:all .2s\";i:12;s:18:\"transition:all .2s\";}}i:398;s:1:\"}\";i:399;s:25:\"@media (max-width:921px){\";i:400;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:401;s:1:\"}\";i:402;s:25:\"@media (max-width:921px){\";i:403;a:2:{i:0;a:1:{s:34:\".ast-amp .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:404;a:2:{i:0;a:1:{s:25:\".ast-amp .main-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:405;a:2:{i:0;a:2:{s:50:\".ast-amp .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:55:\".ast-amp .main-navigation ul .button-custom-menu-item a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:23:\"button-custom-menu-item\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:1:\"a\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:406;a:2:{i:0;a:1:{s:57:\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:407;a:2:{i:0;a:1:{s:68:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:408;a:2:{i:0;a:1:{s:90:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\";a:1:{i:1;a:8:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-item\";i:6;s:9:\"menu-item\";i:7;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:409;a:2:{i:0;a:1:{s:26:\".ast-amp .main-header-menu\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f9f9f9\";}}i:410;a:2:{i:0;a:1:{s:29:\".ast-amp .main-header-menu ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:6:{i:0;s:24:\"background-color:#f9f9f9\";i:1;s:15:\"position:static\";i:2;s:9:\"opacity:1\";i:3;s:18:\"visibility:visible\";i:4;s:8:\"border:0\";i:5;s:10:\"width:auto\";}}i:411;a:2:{i:0;a:2:{s:67:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}s:74:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:412;a:2:{i:0;a:2:{s:66:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}s:73:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:413;a:2:{i:0;a:1:{s:39:\".ast-amp .submenu-with-border .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:414;a:2:{i:0;a:1:{s:21:\".ast-amp .user-select\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:11:\"user-select\";}}}i:1;a:1:{i:0;s:10:\"clear:both\";}}i:415;a:2:{i:0;a:1:{s:33:\".ast-amp .ast-mobile-menu-buttons\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:23:\"ast-mobile-menu-buttons\";}}}i:1;a:7:{i:0;s:16:\"text-align:right\";i:1;s:12:\"display:flex\";i:2;s:20:\"-webkit-box-pack:end\";i:3;s:32:\"-webkit-justify-content:flex-end\";i:4;s:17:\"-moz-box-pack:end\";i:5;s:17:\"-ms-flex-pack:end\";i:6;s:24:\"justify-content:flex-end\";}}i:416;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:6:{i:0;s:18:\"-webkit-box-flex:1\";i:1;s:17:\"-webkit-flex:auto\";i:2;s:15:\"-moz-box-flex:1\";i:3;s:13:\"-ms-flex:auto\";i:4;s:9:\"flex:auto\";i:5;s:23:\"width:calc(100% + 40px)\";}}i:417;a:2:{i:0;a:1:{s:39:\".ast-amp .ast-main-header-bar-alignment\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:29:\"ast-main-header-bar-alignment\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:418;a:2:{i:0;a:1:{s:58:\".ast-amp .site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:11:\"site-header\";i:2;s:20:\"main-header-bar-wrap\";i:3;s:13:\"site-branding\";}}}i:1;a:10:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:14:\"-webkit-flex:1\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:10:\"-ms-flex:1\";i:6;s:6:\"flex:1\";i:7;s:25:\"-webkit-align-self:center\";i:8;s:26:\"-ms-flex-item-align:center\";i:9;s:17:\"align-self:center\";}}i:419;a:2:{i:0;a:1:{s:27:\".ast-amp .ast-site-identity\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"ast-site-identity\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:420;a:2:{i:0;a:1:{s:90:\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";i:4;s:9:\"sub-arrow\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:421;a:2:{i:0;a:1:{s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:422;a:2:{i:0;a:1:{s:58:\".ast-main-header-bar-alignment .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:423;a:2:{i:0;a:1:{s:65:\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:424;a:2:{i:0;a:1:{s:63:\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:425;a:2:{i:0;a:1:{s:87:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:426;a:2:{i:0;a:1:{s:104:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:427;a:2:{i:0;a:1:{s:96:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:428;a:2:{i:0;a:1:{s:102:\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:429;a:2:{i:0;a:1:{s:71:\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:430;a:2:{i:0;a:1:{s:45:\".ast-amp .main-navigation ul > li:first-child\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:431;a:2:{i:0;a:1:{s:31:\".ast-amp .main-navigation ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:2:{i:0;s:9:\"left:auto\";i:1;s:10:\"right:auto\";}}i:432;a:2:{i:0;a:1:{s:28:\".ast-amp .main-navigation li\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:433;a:2:{i:0;a:1:{s:33:\".ast-amp .main-navigation .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:434;a:2:{i:0;a:1:{s:36:\".ast-amp .main-navigation .widget li\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:auto\";}}i:435;a:2:{i:0;a:1:{s:44:\".ast-amp .main-navigation .widget:last-child\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:436;a:2:{i:0;a:1:{s:32:\".ast-amp .main-header-menu ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:437;a:2:{i:0;a:2:{s:54:\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:16:\"custom-logo-link\";}}s:52:\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:438;a:2:{i:0;a:1:{s:61:\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:23:\"custom-mobile-logo-link\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:439;a:2:{i:0;a:2:{s:85:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:16:\"custom-logo-link\";}}s:83:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:440;a:2:{i:0;a:1:{s:40:\".ast-amp .ast-header-widget-area .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:22:\"ast-header-widget-area\";i:2;s:6:\"widget\";}}}i:1;a:2:{i:0;s:13:\"margin:.5em 0\";i:1;s:13:\"display:block\";}}i:441;a:2:{i:0;a:1:{s:27:\".ast-amp .nav-fallback-text\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"nav-fallback-text\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:442;a:2:{i:0;a:1:{s:76:\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:28:\"woocommerce-custom-menu-item\";i:3;s:18:\"ast-cart-menu-wrap\";}}}i:1;a:3:{i:0;s:10:\"height:3em\";i:1;s:13:\"line-height:3\";i:2;s:15:\"text-align:left\";}}i:443;a:2:{i:0;a:1:{s:52:\".ast-amp #ast-site-header-cart .widget_shopping_cart\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"widget_shopping_cart\";}i:2;a:1:{i:0;s:20:\"ast-site-header-cart\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:444;a:2:{i:0;a:1:{s:58:\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\";a:1:{i:1;a:3:{i:0;s:9:\"ast-theme\";i:1;s:25:\"ast-woocommerce-cart-menu\";i:2;s:20:\"ast-site-header-cart\";}}}i:1;a:3:{i:0;s:13:\"order:initial\";i:1;s:13:\"line-height:3\";i:2;s:19:\"padding:0 1em 1em 0\";}}i:445;a:2:{i:0;a:2:{s:58:\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:22:\"widget_edd_cart_widget\";}}s:65:\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:29:\"ast-edd-header-cart-info-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:446;a:2:{i:0;a:1:{s:64:\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:30:\"ast-masthead-custom-menu-items\";i:2;s:20:\"edd-custom-menu-item\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:447;a:2:{i:0;a:1:{s:73:\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";i:3;s:12:\"slide-search\";i:4;s:11:\"search-form\";}}}i:1;a:1:{i:0;s:7:\"right:0\";}}i:448;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-menu .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:449;a:2:{i:0;a:1:{s:41:\".ast-amp .submenu-with-border .sub-menu a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:450;a:2:{i:0;a:1:{s:59:\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:451;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-buttons-minimal\";}}}i:1;a:2:{i:0;s:22:\"background:transparent\";i:1;s:11:\"border:none\";}}i:452;s:1:\"}\";i:453;a:2:{i:0;a:1:{s:40:\".ast-header-break-point .main-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:454;s:25:\"@media (min-width:922px){\";i:455;a:2:{i:0;a:1:{s:16:\".main-header-bar\";a:1:{i:1;a:1:{i:0;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:456;s:1:\"}\";i:457;s:25:\"@media (min-width:922px){\";i:458;a:2:{i:0;a:1:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"width:70%\";}}i:459;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"width:30%\";}}i:460;s:1:\"}\";i:461;a:2:{i:0;a:3:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}s:29:\"#astra-footer-menu .menu-item\";a:2:{i:1;a:1:{i:0;s:9:\"menu-item\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}s:48:\".main-header-bar .ast-masthead-custom-menu-items\";a:1:{i:1;a:2:{i:0;s:15:\"main-header-bar\";i:1;s:30:\"ast-masthead-custom-menu-items\";}}}i:1;a:14:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:23:\"-webkit-box-pack:center\";i:3;s:30:\"-webkit-justify-content:center\";i:4;s:20:\"-moz-box-pack:center\";i:5;s:20:\"-ms-flex-pack:center\";i:6;s:22:\"justify-content:center\";i:7;s:27:\"-webkit-box-orient:vertical\";i:8;s:28:\"-webkit-box-direction:normal\";i:9;s:29:\"-webkit-flex-direction:column\";i:10;s:24:\"-moz-box-orient:vertical\";i:11;s:25:\"-moz-box-direction:normal\";i:12;s:25:\"-ms-flex-direction:column\";i:13;s:21:\"flex-direction:column\";}}i:462;a:2:{i:0;a:2:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}s:44:\"#astra-footer-menu > .menu-item > .menu-link\";a:2:{i:1;a:2:{i:0;s:9:\"menu-item\";i:1;s:9:\"menu-link\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}}i:1;a:8:{i:0;s:11:\"height:100%\";i:1;s:24:\"-webkit-box-align:center\";i:2;s:26:\"-webkit-align-items:center\";i:3;s:21:\"-moz-box-align:center\";i:4;s:21:\"-ms-flex-align:center\";i:5;s:18:\"align-items:center\";i:6;s:16:\"-js-display:flex\";i:7;s:12:\"display:flex\";}}i:463;a:2:{i:0;a:1:{s:95:\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\";a:2:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";i:4;s:10:\"icon-arrow\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:3:\"svg\";}}}i:1;a:5:{i:0;s:8:\"top:.2em\";i:1;s:14:\"margin-top:0px\";i:2;s:15:\"margin-left:0px\";i:3;s:11:\"width:.65em\";i:4;s:43:\"transform:translate(0,-2px) rotateZ(270deg)\";}}i:464;a:2:{i:0;a:1:{s:66:\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\";a:1:{i:1;a:3:{i:0;s:24:\"ast-mobile-popup-content\";i:1;s:20:\"ast-submenu-expanded\";i:2;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:465;a:2:{i:0;a:3:{s:38:\".ast-separate-container .blog-layout-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-1\";}}s:38:\".ast-separate-container .blog-layout-2\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-2\";}}s:38:\".ast-separate-container .blog-layout-3\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-3\";}}}i:1;a:2:{i:0;s:28:\"background-color:transparent\";i:1;s:21:\"background-image:none\";}}i:466;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:467;s:25:\"@media (max-width:921px){\";i:468;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:469;s:1:\"}\";i:470;s:25:\"@media (max-width:544px){\";i:471;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:472;s:1:\"}\";i:473;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:474;s:25:\"@media (max-width:921px){\";i:475;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:476;s:1:\"}\";i:477;s:25:\"@media (max-width:544px){\";i:478;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:479;s:1:\"}\";i:480;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:481;s:25:\"@media (max-width:921px){\";i:482;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:483;s:1:\"}\";i:484;s:25:\"@media (max-width:544px){\";i:485;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:486;s:1:\"}\";i:487;a:2:{i:0;a:2:{s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:14:\"padding:10px 0\";i:1;s:11:\"height:auto\";}}i:488;a:2:{i:0;a:2:{s:42:\".ast-mobile-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:43:\".ast-desktop-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-top:10px\";}}i:489;a:2:{i:0;a:2:{s:46:\".ast-mobile-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:16:\"ast-builder-menu\";}}s:47:\".ast-desktop-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:16:\"ast-builder-menu\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:490;a:2:{i:0;a:2:{s:41:\".ast-mobile-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:42:\".ast-desktop-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:491;a:2:{i:0;a:2:{s:72:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}s:73:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:492;a:2:{i:0;a:1:{s:104:\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:20:\"ast-submenu-expanded\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:493;a:2:{i:0;a:6:{s:47:\"#ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:43:\".ast-mobile-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:15:\"ast-search-icon\";}}s:44:\".ast-desktop-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:15:\"ast-search-icon\";}}s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:95:\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}s:72:\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\";a:1:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:494;a:2:{i:0;a:2:{s:96:\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:99:\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:495;a:2:{i:0;a:6:{s:96:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:107:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:98:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:109:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:92:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:103:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}}i:1;a:2:{i:0;s:9:\"opacity:1\";i:1;s:18:\"visibility:visible\";}}i:496;a:2:{i:0;a:1:{s:141:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:12:\"margin:unset\";}}i:497;a:2:{i:0;a:2:{s:120:\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}s:121:\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:24:\"left:calc(20px - .907em)\";}}i:498;a:2:{i:0;a:4:{s:48:\".ast-mobile-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}s:49:\".ast-desktop-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}}i:1;a:5:{i:0;s:10:\"width:100%\";i:1;s:17:\"position:relative\";i:2;s:13:\"display:block\";i:3;s:10:\"right:auto\";i:4;s:14:\"transform:none\";}}i:499;a:2:{i:0;a:4:{s:74:\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}s:75:\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}}i:1;a:9:{i:0;s:7:\"right:0\";i:1;s:18:\"visibility:visible\";i:2;s:9:\"opacity:1\";i:3;s:17:\"position:relative\";i:4;s:8:\"top:auto\";i:5;s:14:\"transform:none\";i:6;s:9:\"padding:0\";i:7;s:13:\"display:block\";i:8;s:15:\"overflow:hidden\";}}i:500;a:2:{i:0;a:4:{s:80:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:62:\".ast-mobile-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}s:81:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:63:\".ast-desktop-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:19:\"padding-right:5.5em\";}}i:501;a:2:{i:0;a:2:{s:63:\".ast-mobile-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}s:64:\".ast-desktop-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}}i:1;a:7:{i:0;s:13:\"display:block\";i:1;s:17:\"position:absolute\";i:2;s:11:\"height:100%\";i:3;s:5:\"top:0\";i:4;s:7:\"right:0\";i:5;s:13:\"padding:0 1em\";i:6;s:15:\"border-radius:0\";}}i:502;a:2:{i:0;a:1:{s:165:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\";a:2:{i:1;a:8:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:503;a:2:{i:0;a:1:{s:184:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:10:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-item\";i:8;s:9:\"menu-item\";i:9;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:504;a:2:{i:0;a:1:{s:55:\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:22:\"ast-mobile-popup-inner\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:505;a:2:{i:0;a:2:{s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:27:\".ast-desktop-header-content\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:506;a:2:{i:0;a:4:{s:29:\".ast-mobile-popup-content > *\";a:1:{i:1;a:1:{i:0;s:24:\"ast-mobile-popup-content\";}}s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:30:\".ast-desktop-popup-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-desktop-popup-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:15:\"padding-top:0px\";i:1;s:18:\"padding-bottom:0px\";}}i:507;a:2:{i:0;a:1:{s:53:\".content-align-flex-start .ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:26:\"justify-content:flex-start\";}}i:508;a:2:{i:0;a:1:{s:43:\".content-align-flex-start .main-header-menu\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:15:\"text-align:left\";}}i:509;a:2:{i:0;a:1:{s:50:\".ast-mobile-popup-drawer.active .menu-toggle-close\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:17:\"menu-toggle-close\";}}}i:1;a:1:{i:0;s:13:\"color:#3a3a3a\";}}i:510;a:2:{i:0;a:2:{s:47:\".ast-mobile-header-wrap .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}}s:49:\".ast-primary-header-bar .site-primary-header-wrap\";a:1:{i:1;a:2:{i:0;s:22:\"ast-primary-header-bar\";i:1;s:24:\"site-primary-header-wrap\";}}}i:1;a:1:{i:0;s:15:\"min-height:70px\";}}i:511;a:2:{i:0;a:1:{s:67:\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\";a:1:{i:1;a:4:{i:0;s:11:\"ast-desktop\";i:1;s:22:\"ast-primary-header-bar\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";}}}i:1;a:1:{i:0;s:16:\"line-height:70px\";}}i:512;s:25:\"@media (max-width:921px){\";i:513;a:2:{i:0;a:2:{s:57:\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}s:55:\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:20:\"ast-below-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}}i:1;a:2:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";}}i:514;s:1:\"}\";i:515;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:516;s:25:\"@media (min-width:922px){\";i:517;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:518;s:1:\"}\";i:519;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:520;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:521;s:25:\"@media (max-width:921px){\";i:522;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:523;s:1:\"}\";i:524;s:25:\"@media (max-width:544px){\";i:525;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:526;s:1:\"}\";i:527;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-trigger-minimal\";}}}i:1;a:3:{i:0;s:31:\"color:var(--ast-global-color-0)\";i:1;s:11:\"border:none\";i:2;s:22:\"background:transparent\";}}i:528;a:2:{i:0;a:1:{s:104:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:23:\"mobile-menu-toggle-icon\";i:2;s:14:\"ast-mobile-svg\";}}}i:1;a:3:{i:0;s:10:\"width:20px\";i:1;s:11:\"height:20px\";i:2;s:30:\"fill:var(--ast-global-color-0)\";}}i:529;a:2:{i:0;a:1:{s:94:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:16:\"mobile-menu-wrap\";i:2;s:11:\"mobile-menu\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:530;a:2:{i:0;a:1:{s:65:\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:531;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:532;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:533;a:2:{i:0;a:3:{s:58:\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\";a:1:{i:1;a:3:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:16:\"main-header-menu\";}}s:79:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}s:89:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:534;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:535;s:25:\"@media (max-width:921px){\";i:536;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:537;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:538;s:1:\"}\";i:539;s:25:\"@media (max-width:544px){\";i:540;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:541;s:1:\"}\";i:542;a:2:{i:0;a:1:{s:41:\".ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:2:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:543;s:25:\"@media (max-width:921px){\";i:544;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:545;s:1:\"}\";i:546;s:25:\"@media (max-width:544px){\";i:547;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:548;s:1:\"}\";}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"92c7d0347995b7272ae642a54ebee4e8\";s:10:\"parse_time\";d:0.08472394943237305;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(161819,'_transient_timeout_amp-parsed-stylesheet-v40-2b01735338a58ec20cafc80446ff6585','1762396349','off'),
(161820,'_transient_amp-parsed-stylesheet-v40-2b01735338a58ec20cafc80446ff6585','a:8:{s:6:\"tokens\";a:108:{i:0;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:56:{i:0;s:36:\"--wp--preset--aspect-ratio--square:1\";i:1;s:35:\"--wp--preset--aspect-ratio--4-3:4/3\";i:2;s:35:\"--wp--preset--aspect-ratio--3-4:3/4\";i:3;s:35:\"--wp--preset--aspect-ratio--3-2:3/2\";i:4;s:35:\"--wp--preset--aspect-ratio--2-3:2/3\";i:5;s:37:\"--wp--preset--aspect-ratio--16-9:16/9\";i:6;s:37:\"--wp--preset--aspect-ratio--9-16:9/16\";i:7;s:31:\"--wp--preset--color--black:#000\";i:8;s:45:\"--wp--preset--color--cyan-bluish-gray:#abb8c3\";i:9;s:31:\"--wp--preset--color--white:#fff\";i:10;s:38:\"--wp--preset--color--pale-pink:#f78da7\";i:11;s:38:\"--wp--preset--color--vivid-red:#cf2e2e\";i:12;s:50:\"--wp--preset--color--luminous-vivid-orange:#ff6900\";i:13;s:49:\"--wp--preset--color--luminous-vivid-amber:#fcb900\";i:14;s:45:\"--wp--preset--color--light-green-cyan:#7bdcb5\";i:15;s:45:\"--wp--preset--color--vivid-green-cyan:#00d084\";i:16;s:43:\"--wp--preset--color--pale-cyan-blue:#8ed1fc\";i:17;s:44:\"--wp--preset--color--vivid-cyan-blue:#0693e3\";i:18;s:41:\"--wp--preset--color--vivid-purple:#9b51e0\";i:19;s:65:\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\";i:20;s:65:\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\";i:21;s:65:\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\";i:22;s:65:\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\";i:23;s:65:\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\";i:24;s:65:\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\";i:25;s:65:\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\";i:26;s:65:\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\";i:27;s:65:\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\";i:28;s:113:\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\";i:29;s:108:\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\";i:30;s:137:\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\";i:31;s:116:\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\";i:32;s:104:\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\";i:33;s:141:\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\";i:34;s:90:\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\";i:35;s:98:\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\";i:36;s:97:\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\";i:37;s:94:\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\";i:38;s:86:\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\";i:39;s:80:\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\";i:40;s:35:\"--wp--preset--font-size--small:13px\";i:41;s:36:\"--wp--preset--font-size--medium:20px\";i:42;s:35:\"--wp--preset--font-size--large:36px\";i:43;s:37:\"--wp--preset--font-size--x-large:42px\";i:44;s:32:\"--wp--preset--spacing--20:.44rem\";i:45;s:32:\"--wp--preset--spacing--30:.67rem\";i:46;s:30:\"--wp--preset--spacing--40:1rem\";i:47;s:32:\"--wp--preset--spacing--50:1.5rem\";i:48;s:33:\"--wp--preset--spacing--60:2.25rem\";i:49;s:33:\"--wp--preset--spacing--70:3.38rem\";i:50;s:33:\"--wp--preset--spacing--80:5.06rem\";i:51;s:56:\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\";i:52;s:56:\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\";i:53;s:54:\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\";i:54;s:89:\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\";i:55;s:53:\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\";}}i:1;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:2:{i:0;s:63:\"--wp--style--global--content-size:var(--ast-content-width-size)\";i:1;s:37:\"--wp--style--global--wide-size:1200px\";}}i:2;a:2:{i:0;a:1:{s:12:\":where(body)\";a:0:{}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:3;a:2:{i:0;a:1:{s:28:\".wp-site-blocks > .alignleft\";a:1:{i:1;a:2:{i:0;s:14:\"wp-site-blocks\";i:1;s:9:\"alignleft\";}}}i:1;a:2:{i:0;s:10:\"float:left\";i:1;s:16:\"margin-right:2em\";}}i:4;a:2:{i:0;a:1:{s:29:\".wp-site-blocks > .alignright\";a:1:{i:1;a:2:{i:0;s:14:\"wp-site-blocks\";i:1;s:10:\"alignright\";}}}i:1;a:2:{i:0;s:11:\"float:right\";i:1;s:15:\"margin-left:2em\";}}i:5;a:2:{i:0;a:1:{s:30:\".wp-site-blocks > .aligncenter\";a:1:{i:1;a:2:{i:0;s:14:\"wp-site-blocks\";i:1;s:11:\"aligncenter\";}}}i:1;a:3:{i:0;s:22:\"justify-content:center\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:6;a:2:{i:0;a:1:{s:23:\":where(.is-layout-flex)\";a:0:{}}i:1;a:1:{i:0;s:8:\"gap:.5em\";}}i:7;a:2:{i:0;a:1:{s:23:\":where(.is-layout-grid)\";a:0:{}}i:1;a:1:{i:0;s:8:\"gap:.5em\";}}i:8;a:2:{i:0;a:1:{s:28:\".is-layout-flow > .alignleft\";a:1:{i:1;a:2:{i:0;s:14:\"is-layout-flow\";i:1;s:9:\"alignleft\";}}}i:1;a:3:{i:0;s:10:\"float:left\";i:1;s:21:\"margin-inline-start:0\";i:2;s:21:\"margin-inline-end:2em\";}}i:9;a:2:{i:0;a:1:{s:29:\".is-layout-flow > .alignright\";a:1:{i:1;a:2:{i:0;s:14:\"is-layout-flow\";i:1;s:10:\"alignright\";}}}i:1;a:3:{i:0;s:11:\"float:right\";i:1;s:23:\"margin-inline-start:2em\";i:2;s:19:\"margin-inline-end:0\";}}i:10;a:2:{i:0;a:1:{s:50:\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:14:\"is-layout-flow\";i:1;s:11:\"aligncenter\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:11;a:2:{i:0;a:1:{s:35:\".is-layout-constrained > .alignleft\";a:1:{i:1;a:2:{i:0;s:21:\"is-layout-constrained\";i:1;s:9:\"alignleft\";}}}i:1;a:3:{i:0;s:10:\"float:left\";i:1;s:21:\"margin-inline-start:0\";i:2;s:21:\"margin-inline-end:2em\";}}i:12;a:2:{i:0;a:1:{s:36:\".is-layout-constrained > .alignright\";a:1:{i:1;a:2:{i:0;s:21:\"is-layout-constrained\";i:1;s:10:\"alignright\";}}}i:1;a:3:{i:0;s:11:\"float:right\";i:1;s:23:\"margin-inline-start:2em\";i:2;s:19:\"margin-inline-end:0\";}}i:13;a:2:{i:0;a:1:{s:57:\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:2:{i:0;s:21:\"is-layout-constrained\";i:1;s:11:\"aligncenter\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:14;a:2:{i:0;a:1:{s:82:\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\";a:1:{i:1;a:1:{i:0;s:21:\"is-layout-constrained\";}}}i:1;a:1:{i:0;s:48:\"max-width:var(--wp--style--global--content-size)\";}}i:15;a:2:{i:0;a:1:{s:102:\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"is-layout-constrained\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:16;a:2:{i:0;a:1:{s:35:\".is-layout-constrained > .alignwide\";a:1:{i:1;a:2:{i:0;s:21:\"is-layout-constrained\";i:1;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:45:\"max-width:var(--wp--style--global--wide-size)\";}}i:17;a:2:{i:0;a:1:{s:20:\"body .is-layout-flex\";a:2:{i:1;a:1:{i:0;s:14:\"is-layout-flex\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:18;a:2:{i:0;a:1:{s:15:\".is-layout-flex\";a:1:{i:1;a:1:{i:0;s:14:\"is-layout-flex\";}}}i:1;a:2:{i:0;s:14:\"flex-wrap:wrap\";i:1;s:18:\"align-items:center\";}}i:19;a:2:{i:0;a:1:{s:29:\".is-layout-flex > :is(*, div)\";a:1:{i:1;a:1:{i:0;s:14:\"is-layout-flex\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:20;a:2:{i:0;a:1:{s:20:\"body .is-layout-grid\";a:2:{i:1;a:1:{i:0;s:14:\"is-layout-grid\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:21;a:2:{i:0;a:1:{s:29:\".is-layout-grid > :is(*, div)\";a:1:{i:1;a:1:{i:0;s:14:\"is-layout-grid\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:22;a:2:{i:0;a:1:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:4:{i:0;s:15:\"padding-top:0px\";i:1;s:17:\"padding-right:0px\";i:2;s:18:\"padding-bottom:0px\";i:3;s:16:\"padding-left:0px\";}}i:23;a:2:{i:0;a:1:{s:33:\"a:where(:not(.wp-element-button))\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:24;a:2:{i:0;a:1:{s:36:\".has-black-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"has-black-color\";}}}i:1;a:1:{i:0;s:37:\"color:var(--wp--preset--color--black)\";}}i:25;a:2:{i:0;a:1:{s:47:\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-cyan-bluish-gray-color\";}}}i:1;a:1:{i:0;s:48:\"color:var(--wp--preset--color--cyan-bluish-gray)\";}}i:26;a:2:{i:0;a:1:{s:36:\".has-white-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:15:\"has-white-color\";}}}i:1;a:1:{i:0;s:37:\"color:var(--wp--preset--color--white)\";}}i:27;a:2:{i:0;a:1:{s:40:\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"has-pale-pink-color\";}}}i:1;a:1:{i:0;s:41:\"color:var(--wp--preset--color--pale-pink)\";}}i:28;a:2:{i:0;a:1:{s:40:\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"has-vivid-red-color\";}}}i:1;a:1:{i:0;s:41:\"color:var(--wp--preset--color--vivid-red)\";}}i:29;a:2:{i:0;a:1:{s:52:\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:31:\"has-luminous-vivid-orange-color\";}}}i:1;a:1:{i:0;s:53:\"color:var(--wp--preset--color--luminous-vivid-orange)\";}}i:30;a:2:{i:0;a:1:{s:51:\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:30:\"has-luminous-vivid-amber-color\";}}}i:1;a:1:{i:0;s:52:\"color:var(--wp--preset--color--luminous-vivid-amber)\";}}i:31;a:2:{i:0;a:1:{s:47:\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-light-green-cyan-color\";}}}i:1;a:1:{i:0;s:48:\"color:var(--wp--preset--color--light-green-cyan)\";}}i:32;a:2:{i:0;a:1:{s:47:\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-vivid-green-cyan-color\";}}}i:1;a:1:{i:0;s:48:\"color:var(--wp--preset--color--vivid-green-cyan)\";}}i:33;a:2:{i:0;a:1:{s:45:\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:24:\"has-pale-cyan-blue-color\";}}}i:1;a:1:{i:0;s:46:\"color:var(--wp--preset--color--pale-cyan-blue)\";}}i:34;a:2:{i:0;a:1:{s:46:\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:25:\"has-vivid-cyan-blue-color\";}}}i:1;a:1:{i:0;s:47:\"color:var(--wp--preset--color--vivid-cyan-blue)\";}}i:35;a:2:{i:0;a:1:{s:43:\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:22:\"has-vivid-purple-color\";}}}i:1;a:1:{i:0;s:44:\"color:var(--wp--preset--color--vivid-purple)\";}}i:36;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-0)\";}}i:37;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-1)\";}}i:38;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-2)\";}}i:39;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-3)\";}}i:40;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-4)\";}}i:41;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-5)\";}}i:42;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-6)\";}}i:43;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-7)\";}}i:44;a:2:{i:0;a:1:{s:49:\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:50:\"color:var(--wp--preset--color--ast-global-color-8)\";}}i:45;a:2:{i:0;a:1:{s:47:\".has-black-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-black-background-color\";}}}i:1;a:1:{i:0;s:48:\"background-color:var(--wp--preset--color--black)\";}}i:46;a:2:{i:0;a:1:{s:58:\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:37:\"has-cyan-bluish-gray-background-color\";}}}i:1;a:1:{i:0;s:59:\"background-color:var(--wp--preset--color--cyan-bluish-gray)\";}}i:47;a:2:{i:0;a:1:{s:47:\".has-white-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-white-background-color\";}}}i:1;a:1:{i:0;s:48:\"background-color:var(--wp--preset--color--white)\";}}i:48;a:2:{i:0;a:1:{s:51:\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:30:\"has-pale-pink-background-color\";}}}i:1;a:1:{i:0;s:52:\"background-color:var(--wp--preset--color--pale-pink)\";}}i:49;a:2:{i:0;a:1:{s:51:\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:30:\"has-vivid-red-background-color\";}}}i:1;a:1:{i:0;s:52:\"background-color:var(--wp--preset--color--vivid-red)\";}}i:50;a:2:{i:0;a:1:{s:63:\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:42:\"has-luminous-vivid-orange-background-color\";}}}i:1;a:1:{i:0;s:64:\"background-color:var(--wp--preset--color--luminous-vivid-orange)\";}}i:51;a:2:{i:0;a:1:{s:62:\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:41:\"has-luminous-vivid-amber-background-color\";}}}i:1;a:1:{i:0;s:63:\"background-color:var(--wp--preset--color--luminous-vivid-amber)\";}}i:52;a:2:{i:0;a:1:{s:58:\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:37:\"has-light-green-cyan-background-color\";}}}i:1;a:1:{i:0;s:59:\"background-color:var(--wp--preset--color--light-green-cyan)\";}}i:53;a:2:{i:0;a:1:{s:58:\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:37:\"has-vivid-green-cyan-background-color\";}}}i:1;a:1:{i:0;s:59:\"background-color:var(--wp--preset--color--vivid-green-cyan)\";}}i:54;a:2:{i:0;a:1:{s:56:\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-pale-cyan-blue-background-color\";}}}i:1;a:1:{i:0;s:57:\"background-color:var(--wp--preset--color--pale-cyan-blue)\";}}i:55;a:2:{i:0;a:1:{s:57:\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:36:\"has-vivid-cyan-blue-background-color\";}}}i:1;a:1:{i:0;s:58:\"background-color:var(--wp--preset--color--vivid-cyan-blue)\";}}i:56;a:2:{i:0;a:1:{s:54:\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:33:\"has-vivid-purple-background-color\";}}}i:1;a:1:{i:0;s:55:\"background-color:var(--wp--preset--color--vivid-purple)\";}}i:57;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-0)\";}}i:58;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-1)\";}}i:59;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-2)\";}}i:60;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-3)\";}}i:61;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-4)\";}}i:62;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-5)\";}}i:63;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-6)\";}}i:64;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-7)\";}}i:65;a:2:{i:0;a:1:{s:60:\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:61:\"background-color:var(--wp--preset--color--ast-global-color-8)\";}}i:66;a:2:{i:0;a:1:{s:43:\".has-black-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:22:\"has-black-border-color\";}}}i:1;a:1:{i:0;s:44:\"border-color:var(--wp--preset--color--black)\";}}i:67;a:2:{i:0;a:1:{s:54:\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:33:\"has-cyan-bluish-gray-border-color\";}}}i:1;a:1:{i:0;s:55:\"border-color:var(--wp--preset--color--cyan-bluish-gray)\";}}i:68;a:2:{i:0;a:1:{s:43:\".has-white-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:22:\"has-white-border-color\";}}}i:1;a:1:{i:0;s:44:\"border-color:var(--wp--preset--color--white)\";}}i:69;a:2:{i:0;a:1:{s:47:\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-pale-pink-border-color\";}}}i:1;a:1:{i:0;s:48:\"border-color:var(--wp--preset--color--pale-pink)\";}}i:70;a:2:{i:0;a:1:{s:47:\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:26:\"has-vivid-red-border-color\";}}}i:1;a:1:{i:0;s:48:\"border-color:var(--wp--preset--color--vivid-red)\";}}i:71;a:2:{i:0;a:1:{s:59:\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:38:\"has-luminous-vivid-orange-border-color\";}}}i:1;a:1:{i:0;s:60:\"border-color:var(--wp--preset--color--luminous-vivid-orange)\";}}i:72;a:2:{i:0;a:1:{s:58:\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:37:\"has-luminous-vivid-amber-border-color\";}}}i:1;a:1:{i:0;s:59:\"border-color:var(--wp--preset--color--luminous-vivid-amber)\";}}i:73;a:2:{i:0;a:1:{s:54:\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:33:\"has-light-green-cyan-border-color\";}}}i:1;a:1:{i:0;s:55:\"border-color:var(--wp--preset--color--light-green-cyan)\";}}i:74;a:2:{i:0;a:1:{s:54:\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:33:\"has-vivid-green-cyan-border-color\";}}}i:1;a:1:{i:0;s:55:\"border-color:var(--wp--preset--color--vivid-green-cyan)\";}}i:75;a:2:{i:0;a:1:{s:52:\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:31:\"has-pale-cyan-blue-border-color\";}}}i:1;a:1:{i:0;s:53:\"border-color:var(--wp--preset--color--pale-cyan-blue)\";}}i:76;a:2:{i:0;a:1:{s:53:\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:32:\"has-vivid-cyan-blue-border-color\";}}}i:1;a:1:{i:0;s:54:\"border-color:var(--wp--preset--color--vivid-cyan-blue)\";}}i:77;a:2:{i:0;a:1:{s:50:\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:29:\"has-vivid-purple-border-color\";}}}i:1;a:1:{i:0;s:51:\"border-color:var(--wp--preset--color--vivid-purple)\";}}i:78;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-0-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-0)\";}}i:79;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-1-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-1)\";}}i:80;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-2-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-2)\";}}i:81;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-3-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-3)\";}}i:82;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-4-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-4)\";}}i:83;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-5-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-5)\";}}i:84;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-6-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-6)\";}}i:85;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-7-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-7)\";}}i:86;a:2:{i:0;a:1:{s:56:\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:35:\"has-ast-global-color-8-border-color\";}}}i:1;a:1:{i:0;s:57:\"border-color:var(--wp--preset--color--ast-global-color-8)\";}}i:87;a:2:{i:0;a:1:{s:76:\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:55:\"has-vivid-cyan-blue-to-vivid-purple-gradient-background\";}}}i:1;a:1:{i:0;s:71:\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\";}}i:88;a:2:{i:0;a:1:{s:81:\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:60:\"has-light-green-cyan-to-vivid-green-cyan-gradient-background\";}}}i:1;a:1:{i:0;s:76:\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\";}}i:89;a:2:{i:0;a:1:{s:90:\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:69:\"has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\";}}}i:1;a:1:{i:0;s:85:\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\";}}i:90;a:2:{i:0;a:1:{s:79:\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:58:\"has-luminous-vivid-orange-to-vivid-red-gradient-background\";}}}i:1;a:1:{i:0;s:74:\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\";}}i:91;a:2:{i:0;a:1:{s:80:\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:59:\"has-very-light-gray-to-cyan-bluish-gray-gradient-background\";}}}i:1;a:1:{i:0;s:75:\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\";}}i:92;a:2:{i:0;a:1:{s:66:\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:45:\"has-cool-to-warm-spectrum-gradient-background\";}}}i:1;a:1:{i:0;s:61:\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\";}}i:93;a:2:{i:0;a:1:{s:63:\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:42:\"has-blush-light-purple-gradient-background\";}}}i:1;a:1:{i:0;s:58:\"background:var(--wp--preset--gradient--blush-light-purple)\";}}i:94;a:2:{i:0;a:1:{s:59:\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:38:\"has-blush-bordeaux-gradient-background\";}}}i:1;a:1:{i:0;s:54:\"background:var(--wp--preset--gradient--blush-bordeaux)\";}}i:95;a:2:{i:0;a:1:{s:58:\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:37:\"has-luminous-dusk-gradient-background\";}}}i:1;a:1:{i:0;s:53:\"background:var(--wp--preset--gradient--luminous-dusk)\";}}i:96;a:2:{i:0;a:1:{s:55:\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:34:\"has-pale-ocean-gradient-background\";}}}i:1;a:1:{i:0;s:50:\"background:var(--wp--preset--gradient--pale-ocean)\";}}i:97;a:2:{i:0;a:1:{s:59:\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:38:\"has-electric-grass-gradient-background\";}}}i:1;a:1:{i:0;s:54:\"background:var(--wp--preset--gradient--electric-grass)\";}}i:98;a:2:{i:0;a:1:{s:53:\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:32:\"has-midnight-gradient-background\";}}}i:1;a:1:{i:0;s:48:\"background:var(--wp--preset--gradient--midnight)\";}}i:99;a:2:{i:0;a:1:{s:40:\".has-small-font-size:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"has-small-font-size\";}}}i:1;a:1:{i:0;s:45:\"font-size:var(--wp--preset--font-size--small)\";}}i:100;a:2:{i:0;a:1:{s:41:\".has-medium-font-size:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:20:\"has-medium-font-size\";}}}i:1;a:1:{i:0;s:46:\"font-size:var(--wp--preset--font-size--medium)\";}}i:101;a:2:{i:0;a:1:{s:40:\".has-large-font-size:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:19:\"has-large-font-size\";}}}i:1;a:1:{i:0;s:45:\"font-size:var(--wp--preset--font-size--large)\";}}i:102;a:2:{i:0;a:1:{s:42:\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:1:{i:0;s:21:\"has-x-large-font-size\";}}}i:1;a:1:{i:0;s:47:\"font-size:var(--wp--preset--font-size--x-large)\";}}i:103;a:2:{i:0;a:1:{s:46:\":where(.wp-block-post-template.is-layout-flex)\";a:0:{}}i:1;a:1:{i:0;s:10:\"gap:1.25em\";}}i:104;a:2:{i:0;a:1:{s:46:\":where(.wp-block-post-template.is-layout-grid)\";a:0:{}}i:1;a:1:{i:0;s:10:\"gap:1.25em\";}}i:105;a:2:{i:0;a:1:{s:40:\":where(.wp-block-columns.is-layout-flex)\";a:0:{}}i:1;a:1:{i:0;s:7:\"gap:2em\";}}i:106;a:2:{i:0;a:1:{s:40:\":where(.wp-block-columns.is-layout-grid)\";a:0:{}}i:1;a:1:{i:0;s:7:\"gap:2em\";}}i:107;a:2:{i:0;a:1:{s:33:\":root :where(.wp-block-pullquote)\";a:0:{}}i:1;a:2:{i:0;s:15:\"font-size:1.5em\";i:1;s:15:\"line-height:1.6\";}}}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"31c790db6ae2bf95e874b636534a6fa7\";s:10:\"parse_time\";d:0.04219388961791992;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(162064,'_transient_timeout_amp-parsed-stylesheet-v40-4ff0cb7ef656af0c44303d10108fc305','1762434227','off');
INSERT INTO `wp_options` VALUES
(162065,'_transient_amp-parsed-stylesheet-v40-4ff0cb7ef656af0c44303d10108fc305','a:8:{s:6:\"tokens\";a:624:{i:0;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:16:\"font-size:93.75%\";}}i:1;a:2:{i:0;a:2:{s:1:\"a\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:2;a:2:{i:0;a:2:{s:7:\"a:hover\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}s:7:\"a:focus\";a:1:{i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:3;a:2:{i:0;a:7:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:5:\"input\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:6:\"select\";a:1:{i:0;a:1:{i:0;s:6:\"select\";}}s:8:\"textarea\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}}i:1;a:4:{i:0;s:115:\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\";i:1;s:19:\"font-weight:inherit\";i:2;s:14:\"font-size:15px\";i:3;s:14:\"font-size:1rem\";}}i:4;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:5;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:35px\";i:1;s:28:\"font-size:2.3333333333333rem\";i:2;s:13:\"display:block\";}}i:6;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:7;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:3:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";i:2;s:12:\"display:none\";}}i:8;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:9;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:2:{i:0;s:14:\"font-size:40px\";i:1;s:28:\"font-size:2.6666666666667rem\";}}i:10;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:11;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:2:{i:0;s:14:\"font-size:25px\";i:1;s:28:\"font-size:1.6666666666667rem\";}}i:12;a:2:{i:0;a:2:{s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}}i:1;a:2:{i:0;s:14:\"font-size:20px\";i:1;s:28:\"font-size:1.3333333333333rem\";}}i:13;a:2:{i:0;a:2:{s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}}i:1;a:2:{i:0;s:14:\"font-size:18px\";i:1;s:16:\"font-size:1.2rem\";}}i:14;a:2:{i:0;a:2:{s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:15;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:30px\";i:1;s:14:\"font-size:2rem\";}}i:16;a:2:{i:0;a:1:{s:11:\"::selection\";a:0:{}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";i:1;s:10:\"color:#fff\";}}i:17;a:2:{i:0;a:14:{s:4:\"body\";a:1:{i:0;a:1:{i:0;s:4:\"body\";}}s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:18;a:2:{i:0;a:3:{s:17:\".tagcloud a:hover\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:17:\".tagcloud a:focus\";a:2:{i:1;a:1:{i:0;s:8:\"tagcloud\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".tagcloud a.current-item\";a:2:{i:1;a:2:{i:0;s:8:\"tagcloud\";i:1;s:12:\"current-item\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";}}i:19;a:2:{i:0;a:8:{s:11:\"input:focus\";a:1:{i:0;a:1:{i:0;s:5:\"input\";}}s:24:\"input[type=\"text\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"email\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=\"url\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:28:\"input[type=\"password\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:25:\"input[type=\"reset\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"search\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:14:\"textarea:focus\";a:1:{i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:20;a:2:{i:0;a:6:{s:27:\"input[type=\"radio\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"input[type=reset]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:30:\"input[type=\"checkbox\"]:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:hover:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:36:\"input[type=\"checkbox\"]:focus:checked\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:39:\"input[type=range]::-webkit-slider-thumb\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:3:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";i:1;s:42:\"background-color:var(--ast-global-color-0)\";i:2;s:15:\"box-shadow:none\";}}i:21;a:2:{i:0;a:2:{s:34:\".site-footer a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:34:\".site-footer a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:11:\"site-footer\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:22;a:2:{i:0;a:2:{s:32:\".single .nav-links .nav-previous\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:12:\"nav-previous\";}}s:28:\".single .nav-links .nav-next\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:9:\"nav-links\";i:2;s:8:\"nav-next\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:23;a:2:{i:0;a:2:{s:11:\".entry-meta\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}s:13:\".entry-meta *\";a:1:{i:1;a:1:{i:0;s:10:\"entry-meta\";}}}i:1;a:2:{i:0;s:16:\"line-height:1.45\";i:1;s:31:\"color:var(--ast-global-color-0)\";}}i:24;a:2:{i:0;a:7:{s:19:\".entry-meta a:hover\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:hover *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:19:\".entry-meta a:focus\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:21:\".entry-meta a:focus *\";a:2:{i:1;a:1:{i:0;s:10:\"entry-meta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:24:\".page-links > .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:28:\".page-links .page-link:hover\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:24:\".post-navigation a:hover\";a:2:{i:1;a:1:{i:0;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:25;a:2:{i:0;a:3:{s:11:\"#cat option\";a:2:{i:2;a:1:{i:0;s:3:\"cat\";}i:0;a:1:{i:0;s:6:\"option\";}}s:33:\".secondary .calendar_wrap thead a\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}s:41:\".secondary .calendar_wrap thead a:visited\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:0;a:2:{i:0;s:5:\"thead\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:26;a:2:{i:0;a:2:{s:32:\".secondary .calendar_wrap #today\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}}s:22:\".ast-progress-val span\";a:2:{i:1;a:1:{i:0;s:16:\"ast-progress-val\";}i:0;a:1:{i:0;s:4:\"span\";}}}i:1;a:1:{i:0;s:36:\"background:var(--ast-global-color-0)\";}}i:27;a:2:{i:0;a:2:{s:32:\".secondary a:hover + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}s:32:\".secondary a:focus + .post-count\";a:2:{i:1;a:2:{i:0;s:9:\"secondary\";i:1;s:10:\"post-count\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:2:{i:0;s:36:\"background:var(--ast-global-color-0)\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";}}i:28;a:2:{i:0;a:1:{s:25:\".calendar_wrap #today > a\";a:3:{i:1;a:1:{i:0;s:13:\"calendar_wrap\";}i:2;a:1:{i:0;s:5:\"today\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:29;a:2:{i:0;a:2:{s:22:\".page-links .page-link\";a:1:{i:1;a:2:{i:0;s:10:\"page-links\";i:1;s:9:\"page-link\";}}s:26:\".single .post-navigation a\";a:2:{i:1;a:2:{i:0;s:6:\"single\";i:1;s:15:\"post-navigation\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:30;a:2:{i:0;a:1:{s:18:\".ast-archive-title\";a:1:{i:1;a:1:{i:0;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:31;a:2:{i:0;a:1:{s:13:\".widget-title\";a:1:{i:1;a:1:{i:0;s:12:\"widget-title\";}}}i:1;a:3:{i:0;s:14:\"font-size:21px\";i:1;s:16:\"font-size:1.4rem\";i:2;s:31:\"color:var(--ast-global-color-2)\";}}i:32;a:2:{i:0;a:5:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}s:17:\"#secondary button\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"button\";}}s:16:\"#secondary input\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:5:\"input\";}}s:17:\"#secondary select\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:6:\"select\";}}s:19:\"#secondary textarea\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:8:\"textarea\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:33;a:2:{i:0;a:2:{s:33:\".ast-single-post .entry-content a\";a:2:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:58:\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\";a:2:{i:1;a:1:{i:0;s:19:\"ast-comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:25:\"text-decoration:underline\";}}i:34;a:2:{i:0;a:11:{s:56:\".ast-single-post .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}s:60:\".ast-single-post .elementor-button-wrapper .elementor-button\";a:1:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:24:\"elementor-button-wrapper\";i:2;s:16:\"elementor-button\";}}s:43:\".ast-single-post .entry-content .uagb-tab a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:8:\"uagb-tab\";}i:0;a:1:{i:0;s:1:\"a\";}}s:47:\".ast-single-post .entry-content .uagb-ifb-cta a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:12:\"uagb-ifb-cta\";}i:0;a:1:{i:0;s:1:\"a\";}}s:56:\".ast-single-post .entry-content .wp-block-uagb-buttons a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:21:\"wp-block-uagb-buttons\";}i:0;a:1:{i:0;s:1:\"a\";}}s:54:\".ast-single-post .entry-content .uabb-module-content a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:19:\"uabb-module-content\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-post-grid a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-post-grid\";}i:0;a:1:{i:0;s:1:\"a\";}}s:48:\".ast-single-post .entry-content .uagb-timeline a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:13:\"uagb-timeline\";}i:0;a:1:{i:0;s:1:\"a\";}}s:49:\".ast-single-post .entry-content .uagb-toc__wrap a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:14:\"uagb-toc__wrap\";}i:0;a:1:{i:0;s:1:\"a\";}}s:52:\".ast-single-post .entry-content .uagb-taxomony-box a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:17:\"uagb-taxomony-box\";}i:0;a:1:{i:0;s:1:\"a\";}}s:46:\".ast-single-post .entry-content .woocommerce a\";a:2:{i:1;a:3:{i:0;s:15:\"ast-single-post\";i:1;s:13:\"entry-content\";i:2;s:11:\"woocommerce\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:35;a:2:{i:0;a:1:{s:37:\".ast-logo-title-inline .site-logo-img\";a:1:{i:1;a:2:{i:0;s:21:\"ast-logo-title-inline\";i:1;s:13:\"site-logo-img\";}}}i:1;a:1:{i:0;s:17:\"padding-right:1em\";}}i:36;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:18:\"margin:4em 0 2.5em\";i:1;s:21:\"word-break:break-word\";i:2;s:13:\"line-height:2\";}}i:37;a:2:{i:0;a:1:{s:13:\"#secondary li\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:.25em\";}}i:38;a:2:{i:0;a:1:{s:24:\"#secondary li:last-child\";a:2:{i:2;a:1:{i:0;s:9:\"secondary\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:39;s:26:\"@media (max-width: 768px){\";i:40;a:2:{i:0;a:1:{s:58:\".js_active .ast-plain-container.ast-single-post #secondary\";a:2:{i:1;a:3:{i:0;s:9:\"js_active\";i:1;s:19:\"ast-plain-container\";i:2;s:15:\"ast-single-post\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:41;s:1:\"}\";i:42;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:11:\"padding:2em\";i:2;s:17:\"margin-bottom:2em\";}}i:43;s:26:\"@media (min-width: 993px){\";i:44;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:60px\";}}i:45;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:46;s:1:\"}\";i:47;s:26:\"@media (max-width: 993px){\";i:48;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:49;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:18:\"padding-right:30px\";}}i:50;s:1:\"}\";i:51;s:25:\"@media (max-width:921px){\";i:52;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:53;s:1:\"}\";i:54;s:25:\"@media (min-width:921px){\";i:55;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:56;s:1:\"}\";i:57;a:2:{i:0;a:1:{s:29:\".wp-block-buttons.aligncenter\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-buttons\";i:1;s:11:\"aligncenter\";}}}i:1;a:1:{i:0;s:22:\"justify-content:center\";}}i:58;s:26:\"@media (min-width:1200px){\";i:59;a:2:{i:0;a:1:{s:31:\".wp-block-group .has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:12:\"padding:20px\";}}i:60;s:1:\"}\";i:61;s:26:\"@media (min-width:1200px){\";i:62;a:2:{i:0;a:4:{s:64:\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignwide .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignwide\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:64:\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:20:\"wp-block-cover-image\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}s:58:\".wp-block-cover.alignfull .wp-block-cover__inner-container\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-cover\";i:1;s:9:\"alignfull\";i:2;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:63;s:1:\"}\";i:64;a:2:{i:0;a:1:{s:44:\".ast-plain-container.ast-no-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:19:\"ast-plain-container\";i:1;s:14:\"ast-no-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:2:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";}}i:65;s:25:\"@media (max-width:921px){\";i:66;a:2:{i:0;a:2:{s:38:\".ast-theme-transparent-header #primary\";a:2:{i:1;a:1:{i:0;s:28:\"ast-theme-transparent-header\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:40:\".ast-theme-transparent-header #secondary\";a:2:{i:1;a:1:{i:0;s:28:\"ast-theme-transparent-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:67;s:1:\"}\";i:68;a:2:{i:0;a:1:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:unset\";}}i:69;a:2:{i:0;a:1:{s:25:\".wp-block-image.size-full\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-image\";i:1;s:9:\"size-full\";}}}i:1;a:1:{i:0;s:13:\"margin:2rem 0\";}}i:70;a:2:{i:0;a:1:{s:34:\".wp-block-separator.has-background\";a:1:{i:1;a:2:{i:0;s:18:\"wp-block-separator\";i:1;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:71;a:2:{i:0;a:1:{s:17:\".wp-block-gallery\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-gallery\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.6em\";}}i:72;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:2:{i:0;s:15:\"padding-top:4em\";i:1;s:18:\"padding-bottom:4em\";}}i:73;a:2:{i:0;a:3:{s:61:\".wp-block-group__inner-container .wp-block-columns:last-child\";a:1:{i:1;a:2:{i:0;s:31:\"wp-block-group__inner-container\";i:1;s:16:\"wp-block-columns\";}}s:44:\".wp-block-group__inner-container :last-child\";a:1:{i:1;a:1:{i:0;s:31:\"wp-block-group__inner-container\";}}s:21:\".wp-block-table table\";a:2:{i:1;a:1:{i:0;s:14:\"wp-block-table\";}i:0;a:1:{i:0;s:5:\"table\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:74;a:2:{i:0;a:1:{s:20:\".blocks-gallery-grid\";a:1:{i:1;a:1:{i:0;s:19:\"blocks-gallery-grid\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:75;a:2:{i:0;a:1:{s:34:\".wp-block-navigation-link__content\";a:1:{i:1;a:1:{i:0;s:33:\"wp-block-navigation-link__content\";}}}i:1;a:1:{i:0;s:13:\"padding:5px 0\";}}i:76;a:2:{i:0;a:2:{s:54:\".wp-block-group .wp-block-group .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";i:2;s:21:\"has-text-align-center\";}}s:55:\".wp-block-group .wp-block-column .has-text-align-center\";a:1:{i:1;a:3:{i:0;s:14:\"wp-block-group\";i:1;s:15:\"wp-block-column\";i:2;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:77;a:2:{i:0;a:1:{s:22:\".has-text-align-center\";a:1:{i:1;a:1:{i:0;s:21:\"has-text-align-center\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:78;s:26:\"@media (max-width:1200px){\";i:79;a:2:{i:0;a:1:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:3em\";}}i:80;a:2:{i:0;a:1:{s:31:\".wp-block-group .wp-block-group\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:13:\"padding:1.5em\";}}i:81;a:2:{i:0;a:2:{s:17:\".wp-block-columns\";a:1:{i:1;a:1:{i:0;s:16:\"wp-block-columns\";}}s:16:\".wp-block-column\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-column\";}}}i:1;a:1:{i:0;s:13:\"margin:1rem 0\";}}i:82;s:1:\"}\";i:83;s:25:\"@media (min-width:921px){\";i:84;a:2:{i:0;a:1:{s:33:\".wp-block-columns .wp-block-group\";a:1:{i:1;a:2:{i:0;s:16:\"wp-block-columns\";i:1;s:14:\"wp-block-group\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:85;s:1:\"}\";i:86;s:25:\"@media (max-width:544px){\";i:87;a:2:{i:0;a:2:{s:54:\".wp-block-cover-image .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:20:\"wp-block-cover-image\";i:1;s:31:\"wp-block-cover__inner-container\";}}s:48:\".wp-block-cover .wp-block-cover__inner-container\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-cover\";i:1;s:31:\"wp-block-cover__inner-container\";}}}i:1;a:1:{i:0;s:11:\"width:unset\";}}i:88;a:2:{i:0;a:2:{s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}s:21:\".wp-block-cover-image\";a:1:{i:1;a:1:{i:0;s:20:\"wp-block-cover-image\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:89;a:2:{i:0;a:2:{s:15:\".wp-block-group\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-group\";}}s:15:\".wp-block-cover\";a:1:{i:1;a:1:{i:0;s:14:\"wp-block-cover\";}}}i:1;a:1:{i:0;s:11:\"padding:2em\";}}i:90;a:2:{i:0;a:4:{s:35:\".wp-block-media-text__media amp-img\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:36:\".wp-block-media-text__media amp-anim\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}s:37:\".wp-block-media-text__media amp-video\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:9:\"amp-video\";}}s:39:\".wp-block-media-text__media amp-youtube\";a:2:{i:1;a:1:{i:0;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:11:\"amp-youtube\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:14:\"max-width:100%\";}}i:91;a:2:{i:0;a:1:{s:65:\".wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:19:\"wp-block-media-text\";i:1;s:14:\"has-background\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:11:\"padding:1em\";}}i:92;s:1:\"}\";i:93;s:25:\"@media (max-width:921px){\";i:94;a:2:{i:0;a:1:{s:44:\".ast-plain-container.ast-no-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:19:\"ast-plain-container\";i:1;s:14:\"ast-no-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:95;s:1:\"}\";i:96;s:25:\"@media (min-width:544px){\";i:97;a:2:{i:0;a:1:{s:88:\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:22:\"has-media-on-the-right\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 8% 0 0\";}}i:98;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:16:\"padding:0 0 0 8%\";}}i:99;a:2:{i:0;a:6:{s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-bottom-left\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-bottom-right\";}}s:103:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:20:\"is-position-top-left\";}}s:104:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:21:\"is-position-top-right\";}}s:107:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:24:\"is-position-center-right\";}}s:106:\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\";a:1:{i:1;a:5:{i:0;s:19:\"ast-plain-container\";i:1;s:12:\"site-content\";i:2;s:13:\"entry-content\";i:3;s:27:\"has-custom-content-position\";i:4;s:23:\"is-position-center-left\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:100;s:1:\"}\";i:101;s:25:\"@media (max-width:544px){\";i:102;a:2:{i:0;a:1:{s:65:\".entry-content .wp-block-media-text .wp-block-media-text__content\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:8% 0\";}}i:103;a:2:{i:0;a:2:{s:56:\".wp-block-media-text .wp-block-media-text__media amp-img\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:57:\".wp-block-media-text .wp-block-media-text__media amp-anim\";a:2:{i:1;a:2:{i:0;s:19:\"wp-block-media-text\";i:1;s:26:\"wp-block-media-text__media\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:2:{i:0;s:10:\"width:auto\";i:1;s:14:\"max-width:100%\";}}i:104;s:1:\"}\";i:105;a:2:{i:0;a:1:{s:56:\".wp-block-button.is-style-outline .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:38:\"border-color:var(--ast-global-color-0)\";}}i:106;a:2:{i:0;a:2:{s:79:\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:76:\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";i:2;s:16:\"is-style-outline\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:107;a:2:{i:0;a:2:{s:62:\".wp-block-button.is-style-outline .wp-block-button__link:hover\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:62:\".wp-block-button.is-style-outline .wp-block-button__link:focus\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:2:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";i:1;s:38:\"border-color:var(--ast-global-color-1)\";}}i:108;a:2:{i:0;a:2:{s:82:\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}s:82:\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-button\";i:1;s:16:\"is-style-outline\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:109;a:2:{i:0;a:2:{s:37:\".post-page-numbers.current .page-link\";a:1:{i:1;a:3:{i:0;s:17:\"post-page-numbers\";i:1;s:7:\"current\";i:2;s:9:\"page-link\";}}s:37:\".ast-pagination .page-numbers.current\";a:1:{i:1;a:3:{i:0;s:14:\"ast-pagination\";i:1;s:12:\"page-numbers\";i:2;s:7:\"current\";}}}i:1;a:4:{i:0;s:10:\"color:#fff\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:17:\"border-radius:2px\";}}i:110;s:25:\"@media (min-width:544px){\";i:111;a:2:{i:0;a:1:{s:27:\".entry-content > .alignleft\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignleft\";}}}i:1;a:1:{i:0;s:17:\"margin-right:20px\";}}i:112;a:2:{i:0;a:1:{s:28:\".entry-content > .alignright\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:10:\"alignright\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:113;s:1:\"}\";i:114;a:2:{i:0;a:1:{s:15:\"h1.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:115;a:2:{i:0;a:1:{s:15:\"h2.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:116;a:2:{i:0;a:1:{s:15:\"h3.widget-title\";a:2:{i:1;a:1:{i:0;s:12:\"widget-title\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:19:\"font-weight:inherit\";}}i:117;s:25:\"@media (max-width:921px){\";i:118;a:2:{i:0;a:2:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:119;a:2:{i:0;a:2:{s:32:\".ast-separate-container #primary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding:1.5em 0\";}}i:120;a:2:{i:0;a:2:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:15:\"padding:1.5em 0\";i:1;s:8:\"margin:0\";}}i:121;a:2:{i:0;a:1:{s:43:\".ast-left-sidebar #content > .ast-container\";a:2:{i:1;a:2:{i:0;s:16:\"ast-left-sidebar\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:3:{i:0;s:12:\"display:flex\";i:1;s:29:\"flex-direction:column-reverse\";i:2;s:10:\"width:100%\";}}i:122;a:2:{i:0;a:2:{s:30:\".ast-author-box amp-img.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:31:\".ast-author-box amp-anim.avatar\";a:2:{i:1;a:2:{i:0;s:14:\"ast-author-box\";i:1;s:6:\"avatar\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"margin:20px 0 0 0\";}}i:123;s:1:\"}\";i:124;s:25:\"@media (max-width:921px){\";i:125;a:2:{i:0;a:1:{s:20:\"#secondary.secondary\";a:2:{i:1;a:1:{i:0;s:9:\"secondary\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:126;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:16:\"padding-left:1em\";i:1;s:17:\"padding-right:1em\";}}i:127;a:2:{i:0;a:1:{s:52:\".ast-separate-container.ast-two-container #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:14:\"padding-left:0\";i:1;s:15:\"padding-right:0\";}}i:128;a:2:{i:0;a:2:{s:51:\".ast-page-builder-template .entry-header #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:12:\"entry-header\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:37:\".ast-page-builder-template #secondary\";a:2:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:129;s:1:\"}\";i:130;s:25:\"@media (max-width:921px){\";i:131;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:132;a:2:{i:0;a:2:{s:54:\".ast-page-builder-template.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:55:\".ast-page-builder-template.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:20px\";i:1;s:17:\"padding-left:20px\";}}i:133;a:2:{i:0;a:2:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:14:\"padding-left:0\";}}i:134;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"padding-right:0\";}}i:135;s:1:\"}\";i:136;s:25:\"@media (min-width:922px){\";i:137;a:2:{i:0;a:2:{s:50:\".ast-separate-container.ast-right-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}s:49:\".ast-separate-container.ast-left-sidebar #primary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:138;a:2:{i:0;a:1:{s:50:\".search-no-results.ast-separate-container #primary\";a:2:{i:1;a:2:{i:0;s:17:\"search-no-results\";i:1;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:4em\";}}i:139;s:1:\"}\";i:140;s:25:\"@media (min-width:922px){\";i:141;a:2:{i:0;a:1:{s:27:\".ast-right-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:27:\"border-right:1px solid #eee\";}}i:142;a:2:{i:0;a:1:{s:26:\".ast-left-sidebar #primary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:26:\"border-left:1px solid #eee\";}}i:143;a:2:{i:0;a:1:{s:29:\".ast-right-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:26:\"border-left:1px solid #eee\";i:1;s:16:\"margin-left:-1px\";}}i:144;a:2:{i:0;a:1:{s:28:\".ast-left-sidebar #secondary\";a:2:{i:1;a:1:{i:0;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:27:\"border-right:1px solid #eee\";i:1;s:17:\"margin-right:-1px\";}}i:145;a:2:{i:0;a:1:{s:70:\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:17:\"padding-left:30px\";i:1;s:15:\"padding-right:0\";}}i:146;a:2:{i:0;a:1:{s:69:\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:2:{i:0;s:18:\"padding-right:30px\";i:1;s:14:\"padding-left:0\";}}i:147;a:2:{i:0;a:2:{s:52:\".ast-separate-container.ast-right-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-right-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:51:\".ast-separate-container.ast-left-sidebar #secondary\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-left-sidebar\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:148;a:2:{i:0;a:1:{s:71:\".ast-separate-container.ast-two-container #secondary .widget:last-child\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:149;s:1:\"}\";i:150;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:10:\"color:#fff\";}}i:151;a:2:{i:0;a:2:{s:45:\".wp-block-button .wp-block-button__link:hover\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}s:45:\".wp-block-button .wp-block-button__link:focus\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:152;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:8:{i:0;s:18:\"border-style:solid\";i:1;s:38:\"border-color:var(--ast-global-color-0)\";i:2;s:42:\"background-color:var(--ast-global-color-0)\";i:3;s:10:\"color:#fff\";i:4;s:19:\"font-family:inherit\";i:5;s:19:\"font-weight:inherit\";i:6;s:13:\"line-height:1\";i:7;s:17:\"border-radius:2px\";}}i:153;a:2:{i:0;a:1:{s:57:\".wp-block-buttons .wp-block-button .wp-block-button__link\";a:1:{i:1;a:3:{i:0;s:16:\"wp-block-buttons\";i:1;s:15:\"wp-block-button\";i:2;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:15px\";i:1;s:18:\"padding-right:30px\";i:2;s:19:\"padding-bottom:15px\";i:3;s:17:\"padding-left:30px\";}}i:154;s:25:\"@media (max-width:921px){\";i:155;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:156;s:1:\"}\";i:157;s:25:\"@media (max-width:544px){\";i:158;a:2:{i:0;a:1:{s:39:\".wp-block-button .wp-block-button__link\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:21:\"wp-block-button__link\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:159;s:1:\"}\";i:160;a:2:{i:0;a:11:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:18:\".ast-custom-button\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:106:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:16:{i:0;s:18:\"border-style:solid\";i:1;s:18:\"border-top-width:0\";i:2;s:20:\"border-right-width:0\";i:3;s:19:\"border-left-width:0\";i:4;s:21:\"border-bottom-width:0\";i:5;s:10:\"color:#fff\";i:6;s:38:\"border-color:var(--ast-global-color-0)\";i:7;s:42:\"background-color:var(--ast-global-color-0)\";i:8;s:17:\"border-radius:2px\";i:9;s:16:\"padding-top:15px\";i:10;s:18:\"padding-right:30px\";i:11;s:19:\"padding-bottom:15px\";i:12;s:17:\"padding-left:30px\";i:13;s:19:\"font-family:inherit\";i:14;s:19:\"font-weight:inherit\";i:15;s:13:\"line-height:1\";}}i:161;a:2:{i:0;a:18:{s:12:\"button:focus\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:18:\".menu-toggle:hover\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:12:\"button:hover\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:17:\".ast-button:hover\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:38:\".ast-custom-button:hover .button:hover\";a:1:{i:1;a:2:{i:0;s:17:\"ast-custom-button\";i:1;s:6:\"button\";}}s:24:\".ast-custom-button:hover\";a:1:{i:1;a:1:{i:0;s:17:\"ast-custom-button\";}}s:23:\"input[type=reset]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:23:\"input[type=reset]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:hover\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:18:\"input#submit:focus\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"button\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:hover\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:26:\"input[type=\"submit\"]:focus\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:112:\"form[CLASS*=\"wp-block-search__\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\";a:3:{i:3;a:1:{i:0;s:5:\"CLASS\";}i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:23:\"wp-block-search__button\";}i:0;a:1:{i:0;s:4:\"form\";}}s:48:\"body .wp-block-file .wp-block-file__button:hover\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}s:48:\"body .wp-block-file .wp-block-file__button:focus\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:3:{i:0;s:10:\"color:#fff\";i:1;s:42:\"background-color:var(--ast-global-color-1)\";i:2;s:38:\"border-color:var(--ast-global-color-1)\";}}i:162;s:25:\"@media (min-width:544px){\";i:163;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:14:\"max-width:100%\";}}i:164;s:1:\"}\";i:165;s:25:\"@media (max-width:544px){\";i:166;a:2:{i:0;a:4:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}s:43:\".ast-separate-container .ast-article-single\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}s:48:\".ast-separate-container .ast-archive-description\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:23:\"ast-archive-description\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:167;a:2:{i:0;a:1:{s:47:\".ast-separate-container #content .ast-container\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"ast-container\";}i:2;a:1:{i:0;s:7:\"content\";}}}i:1;a:2:{i:0;s:18:\"padding-left:.54em\";i:1;s:19:\"padding-right:.54em\";}}i:168;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:169;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:170;a:2:{i:0;a:1:{s:55:\".ast-search-menu-icon.ast-dropdown-active .search-field\";a:1:{i:1;a:3:{i:0;s:20:\"ast-search-menu-icon\";i:1;s:19:\"ast-dropdown-active\";i:2;s:12:\"search-field\";}}}i:1;a:1:{i:0;s:11:\"width:170px\";}}i:171;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:12px\";i:1;s:18:\"padding-right:24px\";i:2;s:19:\"padding-bottom:12px\";i:3;s:17:\"padding-left:24px\";}}i:172;a:2:{i:0;a:1:{s:34:\".ast-separate-container #secondary\";a:2:{i:1;a:1:{i:0;s:22:\"ast-separate-container\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:173;a:2:{i:0;a:1:{s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:3:{i:0;s:19:\"margin-bottom:1.5em\";i:1;s:16:\"padding-left:1em\";i:2;s:17:\"padding-right:1em\";}}i:174;s:1:\"}\";i:175;s:25:\"@media (max-width:921px){\";i:176;a:2:{i:0;a:8:{s:12:\".menu-toggle\";a:1:{i:1;a:1:{i:0;s:11:\"menu-toggle\";}}s:6:\"button\";a:1:{i:0;a:1:{i:0;s:6:\"button\";}}s:11:\".ast-button\";a:1:{i:1;a:1:{i:0;s:10:\"ast-button\";}}s:7:\".button\";a:1:{i:1;a:1:{i:0;s:6:\"button\";}}s:12:\"input#submit\";a:2:{i:2;a:1:{i:0;s:6:\"submit\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"button\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:20:\"input[type=\"submit\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}s:19:\"input[type=\"reset\"]\";a:2:{i:3;a:1:{i:0;s:4:\"type\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:16:\"padding-top:14px\";i:1;s:18:\"padding-right:28px\";i:2;s:19:\"padding-bottom:14px\";i:3;s:17:\"padding-left:28px\";}}i:177;a:2:{i:0;a:1:{s:63:\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-header-stack\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:178;a:2:{i:0;a:1:{s:113:\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:30:\"ast-header-custom-item-outside\";i:2;s:23:\"ast-mobile-header-stack\";i:3;s:15:\"main-header-bar\";i:4;s:15:\"ast-search-icon\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:179;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:180;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:181;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:182;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:183;s:1:\"}\";i:184;a:2:{i:0;a:4:{s:32:\".entry-content > .wp-block-group\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";}}s:37:\".entry-content > .wp-block-media-text\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:34:\".entry-content > .wp-block-columns\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";}}}i:1;a:4:{i:0;s:14:\"max-width:58em\";i:1;s:22:\"width:calc(100% - 4em)\";i:2;s:16:\"margin-left:auto\";i:3;s:17:\"margin-right:auto\";}}i:185;a:2:{i:0;a:1:{s:56:\".entry-content [class*=\"__inner-container\"] > .alignfull\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:14:\"max-width:100%\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:186;a:2:{i:0;a:1:{s:112:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:187;a:2:{i:0;a:1:{s:155:\".entry-content [class*=\"__inner-container\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:1:{i:0;s:13:\"entry-content\";}}}i:1;a:2:{i:0;s:15:\"max-width:50rem\";i:1;s:10:\"width:100%\";}}i:188;s:25:\"@media (min-width:921px){\";i:189;a:2:{i:0;a:6:{s:57:\".entry-content > .wp-block-group.alignwide.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignwide\";i:3;s:14:\"has-background\";}}s:57:\".entry-content > .wp-block-group.alignfull.has-background\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-group\";i:2;s:9:\"alignfull\";i:3;s:14:\"has-background\";}}s:42:\".entry-content > .wp-block-cover.alignwide\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignwide\";}}s:42:\".entry-content > .wp-block-cover.alignfull\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";i:2;s:9:\"alignfull\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignwide\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignwide\";}}s:59:\".entry-content > .wp-block-columns.has-background.alignfull\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";i:3;s:9:\"alignfull\";}}}i:1;a:3:{i:0;s:12:\"margin-top:0\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding:6em 4em\";}}i:190;a:2:{i:0;a:1:{s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:191;s:1:\"}\";i:192;s:26:\"@media (min-width:1200px){\";i:193;a:2:{i:0;a:1:{s:27:\".entry-content .alignfull p\";a:2:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:16:\"max-width:1200px\";}}i:194;a:2:{i:0;a:1:{s:25:\".entry-content .alignfull\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:10:\"width:100%\";}}i:195;a:2:{i:0;a:2:{s:52:\".ast-page-builder-template .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}s:56:\".entry-content [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignwide\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:13:\"margin-left:0\";i:2;s:14:\"margin-right:0\";}}i:196;a:2:{i:0;a:1:{s:67:\".entry-content .alignfull [class*=\"__inner-container\"] > .alignwide\";a:2:{i:3;a:1:{i:0;s:5:\"class\";}i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:9:\"alignfull\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:15:\"max-width:80rem\";}}i:197;s:1:\"}\";i:198;s:25:\"@media (min-width:545px){\";i:199;a:2:{i:0;a:1:{s:38:\".site-main .entry-content > .alignwide\";a:1:{i:1;a:3:{i:0;s:9:\"site-main\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:1:{i:0;s:13:\"margin:0 auto\";}}i:200;a:2:{i:0;a:3:{s:30:\".wp-block-group.has-background\";a:1:{i:1;a:2:{i:0;s:14:\"wp-block-group\";i:1;s:14:\"has-background\";}}s:32:\".entry-content > .wp-block-cover\";a:1:{i:1;a:2:{i:0;s:13:\"entry-content\";i:1;s:14:\"wp-block-cover\";}}s:49:\".entry-content > .wp-block-columns.has-background\";a:1:{i:1;a:3:{i:0;s:13:\"entry-content\";i:1;s:16:\"wp-block-columns\";i:2;s:14:\"has-background\";}}}i:1;a:3:{i:0;s:11:\"padding:4em\";i:1;s:12:\"margin-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:201;a:2:{i:0;a:2:{s:75:\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:9:\"alignfull\";i:3;s:28:\"wp-block-media-text__content\";}}s:80:\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\";a:1:{i:1;a:4:{i:0;s:13:\"entry-content\";i:1;s:19:\"wp-block-media-text\";i:2;s:14:\"has-background\";i:3;s:28:\"wp-block-media-text__content\";}}}i:1;a:1:{i:0;s:12:\"padding:0 8%\";}}i:202;s:1:\"}\";i:203;s:25:\"@media (max-width:921px){\";i:204;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:205;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:206;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:207;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:208;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:209;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:210;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:211;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:212;s:1:\"}\";i:213;s:25:\"@media (max-width:544px){\";i:214;a:2:{i:0;a:1:{s:11:\".site-title\";a:1:{i:1;a:1:{i:0;s:10:\"site-title\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:215;a:2:{i:0;a:1:{s:43:\".ast-archive-description .ast-archive-title\";a:1:{i:1;a:2:{i:0;s:23:\"ast-archive-description\";i:1;s:17:\"ast-archive-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:40px\";}}i:216;a:2:{i:0;a:1:{s:30:\".site-header .site-description\";a:1:{i:1;a:2:{i:0;s:11:\"site-header\";i:1;s:16:\"site-description\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:217;a:2:{i:0;a:1:{s:12:\".entry-title\";a:1:{i:1;a:1:{i:0;s:11:\"entry-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:218;a:2:{i:0;a:2:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:219;a:2:{i:0;a:2:{s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}}i:1;a:1:{i:0;s:14:\"font-size:25px\";}}i:220;a:2:{i:0;a:2:{s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}}i:1;a:1:{i:0;s:14:\"font-size:20px\";}}i:221;a:2:{i:0;a:2:{s:29:\".ast-single-post .entry-title\";a:1:{i:1;a:2:{i:0;s:15:\"ast-single-post\";i:1;s:11:\"entry-title\";}}s:11:\".page-title\";a:1:{i:1;a:1:{i:0;s:10:\"page-title\";}}}i:1;a:1:{i:0;s:14:\"font-size:30px\";}}i:222;s:1:\"}\";i:223;s:25:\"@media (max-width:921px){\";i:224;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:225;s:1:\"}\";i:226;s:25:\"@media (max-width:544px){\";i:227;a:2:{i:0;a:1:{s:4:\"html\";a:1:{i:0;a:1:{i:0;s:4:\"html\";}}}i:1;a:1:{i:0;s:15:\"font-size:85.5%\";}}i:228;s:1:\"}\";i:229;s:25:\"@media (min-width:922px){\";i:230;a:2:{i:0;a:1:{s:14:\".ast-container\";a:1:{i:1;a:1:{i:0;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:16:\"max-width:1240px\";}}i:231;s:1:\"}\";i:232;s:25:\"@media (min-width:922px){\";i:233;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:234;s:1:\"}\";i:235;s:25:\"@media (max-width:921px){\";i:236;a:2:{i:0;a:1:{s:28:\".site-content .ast-container\";a:1:{i:1;a:2:{i:0;s:12:\"site-content\";i:1;s:13:\"ast-container\";}}}i:1;a:1:{i:0;s:21:\"flex-direction:column\";}}i:237;s:1:\"}\";i:238;s:25:\"@media (min-width:922px){\";i:239;a:2:{i:0;a:2:{s:80:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}s:87:\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\";a:1:{i:1;a:5:{i:0;s:16:\"main-header-menu\";i:1;s:8:\"sub-menu\";i:2;s:9:\"menu-item\";i:3;s:23:\"ast-left-align-sub-menu\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:16:\"margin-left:-0px\";}}i:240;s:1:\"}\";i:241;a:2:{i:0;a:1:{s:16:\".wp-block-search\";a:1:{i:1;a:1:{i:0;s:15:\"wp-block-search\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:20px\";}}i:242;a:2:{i:0;a:1:{s:22:\".wp-block-site-tagline\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-site-tagline\";}}}i:1;a:1:{i:0;s:15:\"margin-top:20px\";}}i:243;a:2:{i:0;a:2:{s:44:\"form.wp-block-search .wp-block-search__input\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}s:80:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\";a:1:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";}}}i:1;a:2:{i:0;s:20:\"border-color:#eaeaea\";i:1;s:18:\"background:#fafafa\";}}i:244;a:2:{i:0;a:2:{s:110:\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\";a:1:{i:1;a:4:{i:0;s:15:\"wp-block-search\";i:1;s:30:\"wp-block-search__button-inside\";i:2;s:31:\"wp-block-search__inside-wrapper\";i:3;s:22:\"wp-block-search__input\";}}s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:19:\"outline:thin dotted\";}}i:245;a:2:{i:0;a:1:{s:30:\".wp-block-loginout input:focus\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:1:{i:0;s:24:\"border-color:transparent\";}}i:246;a:2:{i:0;a:1:{s:77:\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\";a:2:{i:1;a:3:{i:0;s:15:\"wp-block-search\";i:1;s:31:\"wp-block-search__inside-wrapper\";i:2;s:22:\"wp-block-search__input\";}i:0;a:1:{i:0;s:4:\"form\";}}}i:1;a:1:{i:0;s:12:\"padding:12px\";}}i:247;a:2:{i:0;a:1:{s:49:\"form.wp-block-search .wp-block-search__button svg\";a:2:{i:1;a:2:{i:0;s:15:\"wp-block-search\";i:1;s:23:\"wp-block-search__button\";}i:0;a:2:{i:0;s:4:\"form\";i:1;s:3:\"svg\";}}}i:1;a:3:{i:0;s:17:\"fill:currentColor\";i:1;s:10:\"width:20px\";i:2;s:11:\"height:20px\";}}i:248;a:2:{i:0;a:1:{s:26:\".wp-block-loginout p label\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"label\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:249;a:2:{i:0;a:1:{s:66:\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\";a:2:{i:1;a:1:{i:0;s:17:\"wp-block-loginout\";}i:0;a:2:{i:0;s:1:\"p\";i:1;s:5:\"input\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:250;a:2:{i:0;a:1:{s:40:\".wp-block-loginout .login-remember input\";a:2:{i:1;a:2:{i:0;s:17:\"wp-block-loginout\";i:1;s:14:\"login-remember\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:12:\"width:1.1rem\";i:1;s:13:\"height:1.1rem\";i:2;s:18:\"margin:0 5px 4px 0\";i:3;s:21:\"vertical-align:middle\";}}i:251;a:2:{i:0;a:1:{s:42:\"body .wp-block-file .wp-block-file__button\";a:2:{i:1;a:2:{i:0;s:13:\"wp-block-file\";i:1;s:21:\"wp-block-file__button\";}i:0;a:1:{i:0;s:4:\"body\";}}}i:1;a:1:{i:0;s:20:\"text-decoration:none\";}}i:252;a:2:{i:0;a:1:{s:10:\"blockquote\";a:1:{i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:1:{i:0;s:21:\"padding:0 1.2em 1.2em\";}}i:253;a:2:{i:0;a:1:{s:14:\".wp-block-file\";a:1:{i:1;a:1:{i:0;s:13:\"wp-block-file\";}}}i:1;a:4:{i:0;s:12:\"display:flex\";i:1;s:18:\"align-items:center\";i:2;s:14:\"flex-wrap:wrap\";i:3;s:29:\"justify-content:space-between\";}}i:254;a:2:{i:0;a:1:{s:19:\".wp-block-pullquote\";a:1:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}}}i:1;a:1:{i:0;s:11:\"border:none\";}}i:255;a:2:{i:0;a:1:{s:38:\".wp-block-pullquote blockquote::before\";a:2:{i:1;a:1:{i:0;s:18:\"wp-block-pullquote\";}i:0;a:1:{i:0;s:10:\"blockquote\";}}}i:1;a:10:{i:0;s:13:\"content:\"”\"\";i:1;s:34:\"font-family:\"Helvetica\",sans-serif\";i:2;s:12:\"display:flex\";i:3;s:24:\"transform:rotate(180deg)\";i:4;s:14:\"font-size:6rem\";i:5;s:17:\"font-style:normal\";i:6;s:13:\"line-height:1\";i:7;s:16:\"font-weight:bold\";i:8;s:18:\"align-items:center\";i:9;s:22:\"justify-content:center\";}}i:256;a:2:{i:0;a:1:{s:57:\"figure.wp-block-pullquote.is-style-solid-color blockquote\";a:2:{i:1;a:2:{i:0;s:18:\"wp-block-pullquote\";i:1;s:20:\"is-style-solid-color\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"blockquote\";}}}i:1;a:2:{i:0;s:14:\"max-width:100%\";i:1;s:18:\"text-align:inherit\";}}i:257;a:2:{i:0;a:2:{s:47:\"ul.wp-block-categories-list.wp-block-categories\";a:2:{i:1;a:2:{i:0;s:24:\"wp-block-categories-list\";i:1;s:19:\"wp-block-categories\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:43:\"ul.wp-block-archives-list.wp-block-archives\";a:2:{i:1;a:2:{i:0;s:22:\"wp-block-archives-list\";i:1;s:17:\"wp-block-archives\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:20:\"list-style-type:none\";}}i:258;a:2:{i:0;a:1:{s:22:\".wp-block-button__link\";a:1:{i:1;a:1:{i:0;s:21:\"wp-block-button__link\";}}}i:1;a:1:{i:0;s:29:\"border:2px solid currentColor\";}}i:259;a:2:{i:0;a:2:{s:2:\"ul\";a:1:{i:0;a:1:{i:0;s:2:\"ul\";}}s:2:\"ol\";a:1:{i:0;a:1:{i:0;s:2:\"ol\";}}}i:1;a:1:{i:0;s:16:\"margin-left:20px\";}}i:260;a:2:{i:0;a:1:{s:28:\"figure.alignright figcaption\";a:2:{i:1;a:1:{i:0;s:10:\"alignright\";}i:0;a:2:{i:0;s:6:\"figure\";i:1;s:10:\"figcaption\";}}}i:1;a:1:{i:0;s:16:\"text-align:right\";}}i:261;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-0-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:262;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-0-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:263;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-0-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-0-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:264;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-0-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-0-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-0)\";}}i:265;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-1-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:266;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-1-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:267;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-1-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-1-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-1)\";}}i:268;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-1-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-1-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-1)\";}}i:269;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-2-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:270;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-2-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:271;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-2-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-2-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:272;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-2-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-2-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-2)\";}}i:273;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-3-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:274;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-3-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:275;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-3-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-3-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:276;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-3-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-3-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-3)\";}}i:277;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-4-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:278;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-4-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:279;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-4-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-4-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-4)\";}}i:280;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-4-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-4-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-4)\";}}i:281;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-5-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:282;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-5-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:283;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-5-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-5-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-5)\";}}i:284;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-5-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-5-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:285;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-6-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:286;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-6-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:287;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-6-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-6-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-6)\";}}i:288;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-6-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-6-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-6)\";}}i:289;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-7-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:290;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-7-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:291;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-7-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-7-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-7)\";}}i:292;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-7-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-7-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-7)\";}}i:293;a:2:{i:0;a:1:{s:35:\":root .has-ast-global-color-8-color\";a:1:{i:1;a:1:{i:0;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:294;a:2:{i:0;a:1:{s:46:\":root .has-ast-global-color-8-background-color\";a:1:{i:1;a:1:{i:0;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:295;a:2:{i:0;a:1:{s:52:\":root .wp-block-button .has-ast-global-color-8-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:28:\"has-ast-global-color-8-color\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-8)\";}}i:296;a:2:{i:0;a:1:{s:63:\":root .wp-block-button .has-ast-global-color-8-background-color\";a:1:{i:1;a:2:{i:0;s:15:\"wp-block-button\";i:1;s:39:\"has-ast-global-color-8-background-color\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-8)\";}}i:297;a:2:{i:0;a:1:{s:5:\":root\";a:0:{}}i:1;a:9:{i:0;s:28:\"--ast-global-color-0:#0170b9\";i:1;s:28:\"--ast-global-color-1:#3a3a3a\";i:2;s:28:\"--ast-global-color-2:#3a3a3a\";i:3;s:28:\"--ast-global-color-3:#4b4f58\";i:4;s:28:\"--ast-global-color-4:#f5f5f5\";i:5;s:25:\"--ast-global-color-5:#fff\";i:6;s:28:\"--ast-global-color-6:#f2f5f7\";i:7;s:28:\"--ast-global-color-7:#424242\";i:8;s:25:\"--ast-global-color-8:#000\";}}i:298;a:2:{i:0;a:3:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}s:32:\".ast-breadcrumbs .trail-items li\";a:2:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:6:{i:0;s:20:\"display:inline-block\";i:1;s:8:\"margin:0\";i:2;s:9:\"padding:0\";i:3;s:11:\"border:none\";i:4;s:18:\"background:inherit\";i:5;s:13:\"text-indent:0\";}}i:299;a:2:{i:0;a:1:{s:30:\".ast-breadcrumbs .trail-browse\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:12:\"trail-browse\";}}}i:1;a:4:{i:0;s:17:\"font-size:inherit\";i:1;s:18:\"font-style:inherit\";i:2;s:19:\"font-weight:inherit\";i:3;s:13:\"color:inherit\";}}i:300;a:2:{i:0;a:1:{s:29:\".ast-breadcrumbs .trail-items\";a:1:{i:1;a:2:{i:0;s:15:\"ast-breadcrumbs\";i:1;s:11:\"trail-items\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:301;a:2:{i:0;a:1:{s:22:\".trail-items li::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:14:\"padding:0 .3em\";i:1;s:12:\"content:\"»\"\";}}i:302;a:2:{i:0;a:1:{s:35:\".trail-items li:last-of-type::after\";a:2:{i:1;a:1:{i:0;s:11:\"trail-items\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:303;a:2:{i:0;a:12:{s:2:\"h1\";a:1:{i:0;a:1:{i:0;s:2:\"h1\";}}s:17:\".entry-content h1\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h1\";}}s:2:\"h2\";a:1:{i:0;a:1:{i:0;s:2:\"h2\";}}s:17:\".entry-content h2\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h2\";}}s:2:\"h3\";a:1:{i:0;a:1:{i:0;s:2:\"h3\";}}s:17:\".entry-content h3\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h3\";}}s:2:\"h4\";a:1:{i:0;a:1:{i:0;s:2:\"h4\";}}s:17:\".entry-content h4\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h4\";}}s:2:\"h5\";a:1:{i:0;a:1:{i:0;s:2:\"h5\";}}s:17:\".entry-content h5\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h5\";}}s:2:\"h6\";a:1:{i:0;a:1:{i:0;s:2:\"h6\";}}s:17:\".entry-content h6\";a:2:{i:1;a:1:{i:0;s:13:\"entry-content\";}i:0;a:1:{i:0;s:2:\"h6\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:304;a:2:{i:0;a:1:{s:14:\".entry-title a\";a:2:{i:1;a:1:{i:0;s:11:\"entry-title\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-2)\";}}i:305;s:25:\"@media (max-width:921px){\";i:306;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-tablet-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-tablet-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:307;s:1:\"}\";i:308;s:25:\"@media (max-width:544px){\";i:309;a:2:{i:0;a:2:{s:108:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:38:\"ast-builder-grid-row-mobile-3-firstrow\";i:2;s:20:\"ast-builder-grid-row\";}}s:106:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:37:\"ast-builder-grid-row-mobile-3-lastrow\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:16:\"grid-column:1/-1\";}}i:310;s:1:\"}\";i:311;a:2:{i:0;a:1:{s:57:\".ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:312;s:25:\"@media (max-width:921px){\";i:313;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:314;s:1:\"}\";i:315;s:25:\"@media (max-width:544px){\";i:316;a:2:{i:0;a:1:{s:81:\".ast-header-break-point .ast-builder-layout-element[data-section=\"title_tagline\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:317;s:1:\"}\";i:318;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:319;a:2:{i:0;a:2:{s:29:\".ast-builder-menu-1 .sub-menu\";a:1:{i:1;a:2:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:8:\"sub-menu\";}}s:47:\".ast-builder-menu-1 .inline-on-mobile .sub-menu\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"inline-on-mobile\";i:2;s:8:\"sub-menu\";}}}i:1;a:7:{i:0;s:20:\"border-top-width:2px\";i:1;s:23:\"border-bottom-width:0px\";i:2;s:22:\"border-right-width:0px\";i:3;s:21:\"border-left-width:0px\";i:4;s:38:\"border-color:var(--ast-global-color-0)\";i:5;s:18:\"border-style:solid\";i:6;s:17:\"border-radius:0px\";}}i:320;a:2:{i:0;a:2:{s:62:\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";}}s:81:\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\";a:1:{i:1;a:4:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:16:\"main-header-menu\";i:2;s:9:\"menu-item\";i:3;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:14:\"margin-top:0px\";}}i:321;a:2:{i:0;a:2:{s:82:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:101:\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";i:4;s:27:\"astra-full-megamenu-wrapper\";}}}i:1;a:1:{i:0;s:22:\"height:calc(0px + 5px)\";}}i:322;a:2:{i:0;a:1:{s:64:\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:8:\"sub-menu\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:323;s:25:\"@media (max-width:921px){\";i:324;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:325;a:2:{i:0;a:1:{s:62:\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:3:{i:0;s:18:\"ast-builder-menu-1\";i:1;s:22:\"menu-item-has-children\";i:2;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:326;s:1:\"}\";i:327;s:25:\"@media (max-width:544px){\";i:328;a:2:{i:0;a:1:{s:96:\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:329;s:1:\"}\";i:330;a:2:{i:0;a:1:{s:19:\".ast-builder-menu-1\";a:1:{i:1;a:1:{i:0;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:331;s:25:\"@media (max-width:921px){\";i:332;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:333;s:1:\"}\";i:334;s:25:\"@media (max-width:544px){\";i:335;a:2:{i:0;a:1:{s:43:\".ast-header-break-point .ast-builder-menu-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:18:\"ast-builder-menu-1\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:336;s:1:\"}\";i:337;a:2:{i:0;a:1:{s:23:\".site-below-footer-wrap\";a:1:{i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:16:\"padding-top:20px\";i:1;s:19:\"padding-bottom:20px\";}}i:338;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:2:{i:0;s:21:\"background-color:#eee\";i:1;s:15:\"min-height:80px\";}}i:339;a:2:{i:0;a:1:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:3:{i:0;s:16:\"max-width:1200px\";i:1;s:16:\"margin-left:auto\";i:2;s:17:\"margin-right:auto\";}}i:340;a:2:{i:0;a:2:{s:90:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .ast-builder-grid-row\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:20:\"ast-builder-grid-row\";}}s:89:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"] .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:19:\"site-footer-section\";}}}i:1;a:1:{i:0;s:22:\"align-items:flex-start\";}}i:341;a:2:{i:0;a:1:{s:111:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:21:\"ast-footer-row-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:342;a:2:{i:0;a:1:{s:48:\".ast-builder-grid-row-full .ast-builder-grid-row\";a:1:{i:1;a:2:{i:0;s:25:\"ast-builder-grid-row-full\";i:1;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:343;s:25:\"@media (max-width:921px){\";i:344;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-tablet-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:345;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-tablet-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-tablet-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:346;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-tablet-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:347;s:1:\"}\";i:348;s:25:\"@media (max-width:544px){\";i:349;a:2:{i:0;a:1:{s:118:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-inline .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:28:\"ast-footer-row-mobile-inline\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:15:\"margin-bottom:0\";}}i:350;a:2:{i:0;a:1:{s:117:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"].ast-footer-row-mobile-stack .site-footer-section\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:22:\"site-below-footer-wrap\";i:1;s:27:\"ast-footer-row-mobile-stack\";i:2;s:19:\"site-footer-section\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:18:\"margin-bottom:10px\";}}i:351;a:2:{i:0;a:1:{s:86:\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\";a:1:{i:1;a:3:{i:0;s:30:\"ast-builder-grid-row-container\";i:1;s:32:\"ast-builder-grid-row-mobile-full\";i:2;s:20:\"ast-builder-grid-row\";}}}i:1;a:1:{i:0;s:25:\"grid-template-columns:1fr\";}}i:352;s:1:\"}\";i:353;a:2:{i:0;a:1:{s:68:\".site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:1:{i:0;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:354;s:25:\"@media (max-width:921px){\";i:355;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:356;s:1:\"}\";i:357;s:25:\"@media (max-width:544px){\";i:358;a:2:{i:0;a:1:{s:92:\".ast-header-break-point .site-below-footer-wrap[data-section=\"section-below-footer-builder\"]\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"site-below-footer-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:359;s:1:\"}\";i:360;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:361;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-3)\";}}i:362;s:25:\"@media (max-width:921px){\";i:363;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:364;s:1:\"}\";i:365;s:25:\"@media (max-width:544px){\";i:366;a:2:{i:0;a:1:{s:21:\".ast-footer-copyright\";a:1:{i:1;a:1:{i:0;s:20:\"ast-footer-copyright\";}}}i:1;a:1:{i:0;s:17:\"text-align:center\";}}i:367;s:1:\"}\";i:368;a:2:{i:0;a:1:{s:48:\".ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:20:\"ast-footer-copyright\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:369;s:25:\"@media (max-width:921px){\";i:370;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:371;s:1:\"}\";i:372;s:25:\"@media (max-width:544px){\";i:373;a:2:{i:0;a:1:{s:72:\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:20:\"ast-footer-copyright\";i:2;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:12:\"display:flex\";}}i:374;s:1:\"}\";i:375;s:25:\"@media (max-width:921px){\";i:376;a:2:{i:0;a:1:{s:19:\"#ast-desktop-header\";a:1:{i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:377;a:2:{i:0;a:1:{s:18:\"#ast-mobile-header\";a:1:{i:2;a:1:{i:0;s:17:\"ast-mobile-header\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:378;a:2:{i:0;a:1:{s:60:\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-main-header-nav-open\";i:2;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:379;a:2:{i:0;a:1:{s:95:\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:29:\"ast-main-header-bar-alignment\";i:2;s:9:\"toggle-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:380;a:2:{i:0;a:1:{s:77:\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:7:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:8:\"border:0\";i:4;s:23:\"border-bottom-width:1px\";i:5;s:18:\"border-style:solid\";i:6;s:20:\"border-color:#eaeaea\";}}i:381;a:2:{i:0;a:1:{s:75:\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:382;a:2:{i:0;a:1:{s:73:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:383;a:2:{i:0;a:1:{s:97:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:384;a:2:{i:0;a:1:{s:114:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:385;a:2:{i:0;a:1:{s:106:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:386;a:2:{i:0;a:1:{s:112:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:387;a:2:{i:0;a:1:{s:81:\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:25:\"ast-mobile-header-content\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:388;a:2:{i:0;a:3:{s:30:\".ast-amp .ast-below-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-below-header-bar\";}}s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}s:30:\".ast-amp .ast-above-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"ast-above-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:389;s:1:\"}\";i:390;s:25:\"@media (max-width:921px){\";i:391;a:2:{i:0;a:1:{s:49:\".site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:3:{i:0;s:11:\"site-header\";i:1;s:20:\"main-header-bar-wrap\";i:2;s:13:\"site-branding\";}}}i:1;a:9:{i:0;s:12:\"display:flex\";i:1;s:18:\"-webkit-box-flex:1\";i:2;s:14:\"-webkit-flex:1\";i:3;s:15:\"-moz-box-flex:1\";i:4;s:10:\"-ms-flex:1\";i:5;s:6:\"flex:1\";i:6;s:25:\"-webkit-align-self:center\";i:7;s:26:\"-ms-flex-item-align:center\";i:8;s:17:\"align-self:center\";}}i:392;a:2:{i:0;a:1:{s:68:\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\";a:1:{i:1;a:3:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";i:2;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:393;a:2:{i:0;a:1:{s:16:\".main-navigation\";a:1:{i:1;a:1:{i:0;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:394;a:2:{i:0;a:1:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:395;a:2:{i:0;a:1:{s:40:\".ast-main-header-bar-alignment.toggle-on\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:9:\"toggle-on\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:396;a:2:{i:0;a:1:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}}i:1;a:3:{i:0;s:10:\"width:100%\";i:1;s:15:\"text-align:left\";i:2;s:12:\"border-top:0\";}}i:397;a:2:{i:0;a:1:{s:27:\".main-header-bar-navigation\";a:1:{i:1;a:1:{i:0;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:23:\"width:calc(100% + 40px)\";i:1;s:14:\"margin:0 -20px\";}}i:398;a:2:{i:0;a:1:{s:62:\".main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:3:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:399;a:2:{i:0;a:1:{s:87:\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:4:{i:0;s:15:\"main-header-bar\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:13:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:34:\"-webkit-font-smoothing:antialiased\";i:7;s:33:\"-moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:26:\"-webkit-transition:all .2s\";i:12;s:18:\"transition:all .2s\";}}i:400;s:1:\"}\";i:401;s:25:\"@media (max-width:921px){\";i:402;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:1:{i:0;s:8:\"margin:0\";}}i:403;s:1:\"}\";i:404;s:25:\"@media (max-width:921px){\";i:405;a:2:{i:0;a:1:{s:34:\".ast-amp .entry-content .alignwide\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:13:\"entry-content\";i:2;s:9:\"alignwide\";}}}i:1;a:2:{i:0;s:16:\"margin-left:auto\";i:1;s:17:\"margin-right:auto\";}}i:406;a:2:{i:0;a:1:{s:25:\".ast-amp .main-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}}}i:1;a:2:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";}}i:407;a:2:{i:0;a:2:{s:50:\".ast-amp .main-navigation ul .menu-item .menu-link\";a:2:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}s:55:\".ast-amp .main-navigation ul .button-custom-menu-item a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:23:\"button-custom-menu-item\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:1:\"a\";}}}i:1;a:6:{i:0;s:14:\"padding:0 20px\";i:1;s:20:\"display:inline-block\";i:2;s:10:\"width:100%\";i:3;s:23:\"border-bottom-width:1px\";i:4;s:18:\"border-style:solid\";i:5;s:20:\"border-color:#eaeaea\";}}i:408;a:2:{i:0;a:1:{s:57:\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:409;a:2:{i:0;a:1:{s:68:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:410;a:2:{i:0;a:1:{s:90:\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\";a:1:{i:1;a:8:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:8:\"sub-menu\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:9:\"menu-item\";i:6;s:9:\"menu-item\";i:7;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:60px\";}}i:411;a:2:{i:0;a:1:{s:26:\".ast-amp .main-header-menu\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:24:\"background-color:#f9f9f9\";}}i:412;a:2:{i:0;a:1:{s:29:\".ast-amp .main-header-menu ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:6:{i:0;s:24:\"background-color:#f9f9f9\";i:1;s:15:\"position:static\";i:2;s:9:\"opacity:1\";i:3;s:18:\"visibility:visible\";i:4;s:8:\"border:0\";i:5;s:10:\"width:auto\";}}i:413;a:2:{i:0;a:2:{s:67:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}s:74:\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:23:\"ast-left-align-sub-menu\";}i:0;a:3:{i:0;s:2:\"ul\";i:1;s:2:\"li\";i:2;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:414;a:2:{i:0;a:2:{s:66:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}s:73:\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:25:\"ast-sub-menu-goes-outside\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:6:\"left:0\";}}i:415;a:2:{i:0;a:1:{s:39:\".ast-amp .submenu-with-border .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:8:\"border:0\";}}i:416;a:2:{i:0;a:1:{s:21:\".ast-amp .user-select\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:11:\"user-select\";}}}i:1;a:1:{i:0;s:10:\"clear:both\";}}i:417;a:2:{i:0;a:1:{s:33:\".ast-amp .ast-mobile-menu-buttons\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:23:\"ast-mobile-menu-buttons\";}}}i:1;a:7:{i:0;s:16:\"text-align:right\";i:1;s:12:\"display:flex\";i:2;s:20:\"-webkit-box-pack:end\";i:3;s:32:\"-webkit-justify-content:flex-end\";i:4;s:17:\"-moz-box-pack:end\";i:5;s:17:\"-ms-flex-pack:end\";i:6;s:24:\"justify-content:flex-end\";}}i:418;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:6:{i:0;s:18:\"-webkit-box-flex:1\";i:1;s:17:\"-webkit-flex:auto\";i:2;s:15:\"-moz-box-flex:1\";i:3;s:13:\"-ms-flex:auto\";i:4;s:9:\"flex:auto\";i:5;s:23:\"width:calc(100% + 40px)\";}}i:419;a:2:{i:0;a:1:{s:39:\".ast-amp .ast-main-header-bar-alignment\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:29:\"ast-main-header-bar-alignment\";}}}i:1;a:12:{i:0;s:13:\"display:block\";i:1;s:10:\"width:100%\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:17:\"-webkit-flex:auto\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:13:\"-ms-flex:auto\";i:6;s:9:\"flex:auto\";i:7;s:27:\"-webkit-box-ordinal-group:5\";i:8;s:15:\"-webkit-order:4\";i:9;s:24:\"-moz-box-ordinal-group:5\";i:10;s:16:\"-ms-flex-order:4\";i:11;s:7:\"order:4\";}}i:420;a:2:{i:0;a:1:{s:58:\".ast-amp .site-header .main-header-bar-wrap .site-branding\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:11:\"site-header\";i:2;s:20:\"main-header-bar-wrap\";i:3;s:13:\"site-branding\";}}}i:1;a:10:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:18:\"-webkit-box-flex:1\";i:3;s:14:\"-webkit-flex:1\";i:4;s:15:\"-moz-box-flex:1\";i:5;s:10:\"-ms-flex:1\";i:6;s:6:\"flex:1\";i:7;s:25:\"-webkit-align-self:center\";i:8;s:26:\"-ms-flex-item-align:center\";i:9;s:17:\"align-self:center\";}}i:421;a:2:{i:0;a:1:{s:27:\".ast-amp .ast-site-identity\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"ast-site-identity\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:422;a:2:{i:0;a:1:{s:90:\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";i:4;s:9:\"sub-arrow\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:423;a:2:{i:0;a:1:{s:25:\".ast-amp .main-header-bar\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";}}}i:1;a:3:{i:0;s:8:\"border:0\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:424;a:2:{i:0;a:1:{s:58:\".ast-main-header-bar-alignment .main-header-bar-navigation\";a:1:{i:1;a:2:{i:0;s:29:\"ast-main-header-bar-alignment\";i:1;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:425;a:2:{i:0;a:1:{s:65:\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:10:\"toggled-on\";i:3;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:13:\"line-height:3\";i:1;s:12:\"display:none\";}}i:426;a:2:{i:0;a:1:{s:63:\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:13:\"line-height:3\";}}i:427;a:2:{i:0;a:1:{s:87:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:428;a:2:{i:0;a:1:{s:104:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\";a:2:{i:1;a:6:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:13:\"dropdown-open\";i:5;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:429;a:2:{i:0;a:1:{s:96:\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:12:{i:0;s:20:\"display:inline-block\";i:1;s:17:\"position:absolute\";i:2;s:17:\"font-size:inherit\";i:3;s:8:\"top:-1px\";i:4;s:10:\"right:20px\";i:5;s:14:\"cursor:pointer\";i:6;s:33:\"webkit-font-smoothing:antialiased\";i:7;s:32:\"moz-osx-font-smoothing:grayscale\";i:8;s:16:\"padding:0 .907em\";i:9;s:18:\"font-weight:normal\";i:10;s:19:\"line-height:inherit\";i:11;s:18:\"transition:all .2s\";}}i:430;a:2:{i:0;a:1:{s:102:\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:20:\"ast-submenu-expanded\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:2:{i:0;s:33:\"-webkit-transform:rotateX(180deg)\";i:1;s:25:\"transform:rotateX(180deg)\";}}i:431;a:2:{i:0;a:1:{s:71:\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:16:\"main-header-menu\";}}}i:1;a:3:{i:0;s:20:\"border-top-width:1px\";i:1;s:18:\"border-style:solid\";i:2;s:20:\"border-color:#eaeaea\";}}i:432;a:2:{i:0;a:1:{s:45:\".ast-amp .main-navigation ul > li:first-child\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"li\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:433;a:2:{i:0;a:1:{s:31:\".ast-amp .main-navigation ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:2:{i:0;s:9:\"left:auto\";i:1;s:10:\"right:auto\";}}i:434;a:2:{i:0;a:1:{s:28:\".ast-amp .main-navigation li\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:435;a:2:{i:0;a:1:{s:33:\".ast-amp .main-navigation .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:436;a:2:{i:0;a:1:{s:36:\".ast-amp .main-navigation .widget li\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:10:\"width:auto\";}}i:437;a:2:{i:0;a:1:{s:44:\".ast-amp .main-navigation .widget:last-child\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-navigation\";i:2;s:6:\"widget\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:438;a:2:{i:0;a:1:{s:32:\".ast-amp .main-header-menu ul ul\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:2:\"ul\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:439;a:2:{i:0;a:2:{s:54:\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:16:\"custom-logo-link\";}}s:52:\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:440;a:2:{i:0;a:1:{s:61:\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:26:\"ast-has-mobile-header-logo\";i:2;s:23:\"custom-mobile-logo-link\";}}}i:1;a:1:{i:0;s:20:\"display:inline-block\";}}i:441;a:2:{i:0;a:2:{s:85:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:16:\"custom-logo-link\";}}s:83:\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\";a:1:{i:1;a:4:{i:0;s:9:\"ast-theme\";i:1;s:28:\"ast-mobile-inherit-site-logo\";i:2;s:26:\"ast-has-mobile-header-logo\";i:3;s:14:\"astra-logo-svg\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:442;a:2:{i:0;a:1:{s:40:\".ast-amp .ast-header-widget-area .widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:22:\"ast-header-widget-area\";i:2;s:6:\"widget\";}}}i:1;a:2:{i:0;s:13:\"margin:.5em 0\";i:1;s:13:\"display:block\";}}i:443;a:2:{i:0;a:1:{s:27:\".ast-amp .nav-fallback-text\";a:1:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:17:\"nav-fallback-text\";}}}i:1;a:1:{i:0;s:10:\"float:none\";}}i:444;a:2:{i:0;a:1:{s:76:\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\";a:1:{i:1;a:4:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:28:\"woocommerce-custom-menu-item\";i:3;s:18:\"ast-cart-menu-wrap\";}}}i:1;a:3:{i:0;s:10:\"height:3em\";i:1;s:13:\"line-height:3\";i:2;s:15:\"text-align:left\";}}i:445;a:2:{i:0;a:1:{s:52:\".ast-amp #ast-site-header-cart .widget_shopping_cart\";a:2:{i:1;a:2:{i:0;s:7:\"ast-amp\";i:1;s:20:\"widget_shopping_cart\";}i:2;a:1:{i:0;s:20:\"ast-site-header-cart\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:446;a:2:{i:0;a:1:{s:58:\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\";a:1:{i:1;a:3:{i:0;s:9:\"ast-theme\";i:1;s:25:\"ast-woocommerce-cart-menu\";i:2;s:20:\"ast-site-header-cart\";}}}i:1;a:3:{i:0;s:13:\"order:initial\";i:1;s:13:\"line-height:3\";i:2;s:19:\"padding:0 1em 1em 0\";}}i:447;a:2:{i:0;a:2:{s:58:\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:22:\"widget_edd_cart_widget\";}}s:65:\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:24:\"ast-edd-site-header-cart\";i:2;s:29:\"ast-edd-header-cart-info-wrap\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:448;a:2:{i:0;a:1:{s:64:\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:30:\"ast-masthead-custom-menu-items\";i:2;s:20:\"edd-custom-menu-item\";}i:0;a:1:{i:0;s:3:\"div\";}}}i:1;a:1:{i:0;s:9:\"padding:0\";}}i:449;a:2:{i:0;a:1:{s:73:\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:5:{i:0;s:7:\"ast-amp\";i:1;s:15:\"main-header-bar\";i:2;s:20:\"ast-search-menu-icon\";i:3;s:12:\"slide-search\";i:4;s:11:\"search-form\";}}}i:1;a:1:{i:0;s:7:\"right:0\";}}i:450;a:2:{i:0;a:1:{s:36:\".ast-amp .main-header-menu .sub-menu\";a:1:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:16:\"main-header-menu\";i:2;s:8:\"sub-menu\";}}}i:1;a:1:{i:0;s:15:\"box-shadow:none\";}}i:451;a:2:{i:0;a:1:{s:41:\".ast-amp .submenu-with-border .sub-menu a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:452;a:2:{i:0;a:1:{s:59:\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\";a:2:{i:1;a:3:{i:0;s:7:\"ast-amp\";i:1;s:19:\"submenu-with-border\";i:2;s:8:\"sub-menu\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:1:\"a\";}}}i:1;a:1:{i:0;s:16:\"border-width:1px\";}}i:453;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-buttons-minimal\";}}}i:1;a:2:{i:0;s:22:\"background:transparent\";i:1;s:11:\"border:none\";}}i:454;s:1:\"}\";i:455;a:2:{i:0;a:1:{s:40:\".ast-header-break-point .main-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:456;s:25:\"@media (min-width:922px){\";i:457;a:2:{i:0;a:1:{s:16:\".main-header-bar\";a:1:{i:1;a:1:{i:0;s:15:\"main-header-bar\";}}}i:1;a:1:{i:0;s:23:\"border-bottom-width:1px\";}}i:458;s:1:\"}\";i:459;s:25:\"@media (min-width:922px){\";i:460;a:2:{i:0;a:1:{s:8:\"#primary\";a:1:{i:2;a:1:{i:0;s:7:\"primary\";}}}i:1;a:1:{i:0;s:9:\"width:70%\";}}i:461;a:2:{i:0;a:1:{s:10:\"#secondary\";a:1:{i:2;a:1:{i:0;s:9:\"secondary\";}}}i:1;a:1:{i:0;s:9:\"width:30%\";}}i:462;s:1:\"}\";i:463;a:2:{i:0;a:3:{s:28:\".main-header-menu .menu-item\";a:1:{i:1;a:2:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";}}s:29:\"#astra-footer-menu .menu-item\";a:2:{i:1;a:1:{i:0;s:9:\"menu-item\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}s:48:\".main-header-bar .ast-masthead-custom-menu-items\";a:1:{i:1;a:2:{i:0;s:15:\"main-header-bar\";i:1;s:30:\"ast-masthead-custom-menu-items\";}}}i:1;a:14:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:23:\"-webkit-box-pack:center\";i:3;s:30:\"-webkit-justify-content:center\";i:4;s:20:\"-moz-box-pack:center\";i:5;s:20:\"-ms-flex-pack:center\";i:6;s:22:\"justify-content:center\";i:7;s:27:\"-webkit-box-orient:vertical\";i:8;s:28:\"-webkit-box-direction:normal\";i:9;s:29:\"-webkit-flex-direction:column\";i:10;s:24:\"-moz-box-orient:vertical\";i:11;s:25:\"-moz-box-direction:normal\";i:12;s:25:\"-ms-flex-direction:column\";i:13;s:21:\"flex-direction:column\";}}i:464;a:2:{i:0;a:2:{s:43:\".main-header-menu > .menu-item > .menu-link\";a:1:{i:1;a:3:{i:0;s:16:\"main-header-menu\";i:1;s:9:\"menu-item\";i:2;s:9:\"menu-link\";}}s:44:\"#astra-footer-menu > .menu-item > .menu-link\";a:2:{i:1;a:2:{i:0;s:9:\"menu-item\";i:1;s:9:\"menu-link\";}i:2;a:1:{i:0;s:17:\"astra-footer-menu\";}}}i:1;a:8:{i:0;s:11:\"height:100%\";i:1;s:24:\"-webkit-box-align:center\";i:2;s:26:\"-webkit-align-items:center\";i:3;s:21:\"-moz-box-align:center\";i:4;s:21:\"-ms-flex-align:center\";i:5;s:18:\"align-items:center\";i:6;s:16:\"-js-display:flex\";i:7;s:12:\"display:flex\";}}i:465;a:2:{i:0;a:1:{s:95:\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\";a:2:{i:1;a:5:{i:0;s:22:\"ast-header-break-point\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";i:4;s:10:\"icon-arrow\";}i:0;a:2:{i:0;s:2:\"ul\";i:1;s:3:\"svg\";}}}i:1;a:5:{i:0;s:8:\"top:.2em\";i:1;s:14:\"margin-top:0px\";i:2;s:15:\"margin-left:0px\";i:3;s:11:\"width:.65em\";i:4;s:43:\"transform:translate(0,-2px) rotateZ(270deg)\";}}i:466;a:2:{i:0;a:1:{s:66:\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\";a:1:{i:1;a:3:{i:0;s:24:\"ast-mobile-popup-content\";i:1;s:20:\"ast-submenu-expanded\";i:2;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:467;a:2:{i:0;a:3:{s:38:\".ast-separate-container .blog-layout-1\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-1\";}}s:38:\".ast-separate-container .blog-layout-2\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-2\";}}s:38:\".ast-separate-container .blog-layout-3\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"blog-layout-3\";}}}i:1;a:2:{i:0;s:28:\"background-color:transparent\";i:1;s:21:\"background-image:none\";}}i:468;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:469;s:25:\"@media (max-width:921px){\";i:470;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:471;s:1:\"}\";i:472;s:25:\"@media (max-width:544px){\";i:473;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-article-post\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-article-post\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:474;s:1:\"}\";i:475;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:476;s:25:\"@media (max-width:921px){\";i:477;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:478;s:1:\"}\";i:479;s:25:\"@media (max-width:544px){\";i:480;a:2:{i:0;a:13:{s:66:\".ast-separate-container .ast-article-single:not(.ast-related-post)\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:18:\"ast-article-single\";}}s:55:\".ast-separate-container .comments-area .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:15:\"comment-respond\";}}s:59:\".ast-separate-container .comments-area .ast-comment-list li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}s:50:\".ast-separate-container .ast-woocommerce-container\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:25:\"ast-woocommerce-container\";}}s:34:\".ast-separate-container .error-404\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:9:\"error-404\";}}s:35:\".ast-separate-container .no-results\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:10:\"no-results\";}}s:47:\".single.ast-separate-container .ast-author-meta\";a:1:{i:1;a:3:{i:0;s:6:\"single\";i:1;s:22:\"ast-separate-container\";i:2;s:15:\"ast-author-meta\";}}s:52:\".ast-separate-container .related-posts-title-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:27:\"related-posts-title-wrapper\";}}s:60:\".ast-separate-container.ast-two-container #secondary .widget\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:17:\"ast-two-container\";i:2;s:6:\"widget\";}i:2;a:1:{i:0;s:9:\"secondary\";}}s:47:\".ast-separate-container .comments-count-wrapper\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:22:\"comments-count-wrapper\";}}s:49:\".ast-box-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:14:\"ast-box-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:52:\".ast-padded-layout.ast-plain-container .site-content\";a:1:{i:1;a:3:{i:0;s:17:\"ast-padded-layout\";i:1;s:19:\"ast-plain-container\";i:2;s:12:\"site-content\";}}s:54:\".ast-separate-container .comments-area .comments-title\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";i:2;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:481;s:1:\"}\";i:482;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:483;s:25:\"@media (max-width:921px){\";i:484;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:485;s:1:\"}\";i:486;s:25:\"@media (max-width:544px){\";i:487;a:2:{i:0;a:2:{s:20:\".ast-plain-container\";a:1:{i:1;a:1:{i:0;s:19:\"ast-plain-container\";}}s:26:\".ast-page-builder-template\";a:1:{i:1;a:1:{i:0;s:25:\"ast-page-builder-template\";}}}i:1;a:1:{i:0;s:42:\"background-color:var(--ast-global-color-5)\";}}i:488;s:1:\"}\";i:489;a:2:{i:0;a:2:{s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:14:\"padding:10px 0\";i:1;s:11:\"height:auto\";}}i:490;a:2:{i:0;a:2:{s:42:\".ast-mobile-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:43:\".ast-desktop-header-content > *:first-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-top:10px\";}}i:491;a:2:{i:0;a:2:{s:46:\".ast-mobile-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:16:\"ast-builder-menu\";}}s:47:\".ast-desktop-header-content > .ast-builder-menu\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:16:\"ast-builder-menu\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:492;a:2:{i:0;a:2:{s:41:\".ast-mobile-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:42:\".ast-desktop-header-content > *:last-child\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:493;a:2:{i:0;a:2:{s:72:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}s:73:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\";a:2:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";}i:0;a:1:{i:0;s:5:\"label\";}}}i:1;a:1:{i:0;s:10:\"width:100%\";}}i:494;a:2:{i:0;a:1:{s:104:\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:26:\"main-header-bar-navigation\";i:2;s:20:\"ast-submenu-expanded\";i:3;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:25:\"transform:rotateX(180deg)\";}}i:495;a:2:{i:0;a:6:{s:47:\"#ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:43:\".ast-mobile-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:15:\"ast-search-icon\";}}s:44:\".ast-desktop-header-content .ast-search-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:15:\"ast-search-icon\";}}s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:95:\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}s:72:\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\";a:1:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:18:\"ast-popup-nav-open\";i:2;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:12:\"display:none\";}}i:496;a:2:{i:0;a:2:{s:96:\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\";a:2:{i:1;a:3:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:26:\"ast-desktop-header-content\";}i:2;a:1:{i:0;s:18:\"ast-desktop-header\";}}s:99:\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:4:{i:0;s:24:\"ast-main-header-nav-open\";i:1;s:22:\"ast-header-break-point\";i:2;s:22:\"ast-mobile-header-wrap\";i:3;s:25:\"ast-mobile-header-content\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:497;a:2:{i:0;a:6:{s:96:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:107:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:29:\"astra-menu-animation-slide-up\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:98:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:109:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:31:\"astra-menu-animation-slide-down\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}s:92:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\";a:1:{i:1;a:5:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";}}s:103:\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\";a:1:{i:1;a:6:{i:0;s:11:\"ast-desktop\";i:1;s:26:\"ast-desktop-header-content\";i:2;s:25:\"astra-menu-animation-fade\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-item\";i:5;s:8:\"sub-menu\";}}}i:1;a:2:{i:0;s:9:\"opacity:1\";i:1;s:18:\"visibility:visible\";}}i:498;a:2:{i:0;a:1:{s:141:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";}}}i:1;a:2:{i:0;s:11:\"width:unset\";i:1;s:12:\"margin:unset\";}}i:499;a:2:{i:0;a:2:{s:120:\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}s:121:\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:22:\"content-align-flex-end\";i:2;s:26:\"main-header-bar-navigation\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:24:\"left:calc(20px - .907em)\";}}i:500;a:2:{i:0;a:4:{s:48:\".ast-mobile-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}s:49:\".ast-desktop-header-content .ast-search-menu-icon\";a:1:{i:1;a:2:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon.slide-search\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";}}}i:1;a:5:{i:0;s:10:\"width:100%\";i:1;s:17:\"position:relative\";i:2;s:13:\"display:block\";i:3;s:10:\"right:auto\";i:4;s:14:\"transform:none\";}}i:501;a:2:{i:0;a:4:{s:74:\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:61:\".ast-mobile-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}s:75:\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"slide-search\";i:3;s:11:\"search-form\";}}s:62:\".ast-desktop-header-content .ast-search-menu-icon .search-form\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:11:\"search-form\";}}}i:1;a:9:{i:0;s:7:\"right:0\";i:1;s:18:\"visibility:visible\";i:2;s:9:\"opacity:1\";i:3;s:17:\"position:relative\";i:4;s:8:\"top:auto\";i:5;s:14:\"transform:none\";i:6;s:9:\"padding:0\";i:7;s:13:\"display:block\";i:8;s:15:\"overflow:hidden\";}}i:502;a:2:{i:0;a:4:{s:80:\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:62:\".ast-mobile-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}s:81:\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\";a:1:{i:1;a:4:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:17:\"ast-inline-search\";i:3;s:12:\"search-field\";}}s:63:\".ast-desktop-header-content .ast-search-menu-icon .search-field\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:12:\"search-field\";}}}i:1;a:2:{i:0;s:10:\"width:100%\";i:1;s:19:\"padding-right:5.5em\";}}i:503;a:2:{i:0;a:2:{s:63:\".ast-mobile-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:25:\"ast-mobile-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}s:64:\".ast-desktop-header-content .ast-search-menu-icon .search-submit\";a:1:{i:1;a:3:{i:0;s:26:\"ast-desktop-header-content\";i:1;s:20:\"ast-search-menu-icon\";i:2;s:13:\"search-submit\";}}}i:1;a:7:{i:0;s:13:\"display:block\";i:1;s:17:\"position:absolute\";i:2;s:11:\"height:100%\";i:3;s:5:\"top:0\";i:4;s:7:\"right:0\";i:5;s:13:\"padding:0 1em\";i:6;s:15:\"border-radius:0\";}}i:504;a:2:{i:0;a:1:{s:165:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\";a:2:{i:1;a:8:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-link\";}i:0;a:1:{i:0;s:2:\"ul\";}}}i:1;a:1:{i:0;s:17:\"padding-left:30px\";}}i:505;a:2:{i:0;a:1:{s:184:\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\";a:1:{i:1;a:10:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-default-menu-enable\";i:2;s:22:\"ast-header-break-point\";i:3;s:22:\"ast-mobile-header-wrap\";i:4;s:25:\"ast-mobile-header-content\";i:5;s:26:\"main-header-bar-navigation\";i:6;s:8:\"sub-menu\";i:7;s:9:\"menu-item\";i:8;s:9:\"menu-item\";i:9;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"padding-left:40px\";}}i:506;a:2:{i:0;a:1:{s:55:\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:22:\"ast-mobile-popup-inner\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:507;a:2:{i:0;a:2:{s:50:\".ast-mobile-header-wrap .ast-mobile-header-content\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:25:\"ast-mobile-header-content\";}}s:27:\".ast-desktop-header-content\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:508;a:2:{i:0;a:4:{s:29:\".ast-mobile-popup-content > *\";a:1:{i:1;a:1:{i:0;s:24:\"ast-mobile-popup-content\";}}s:30:\".ast-mobile-header-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-mobile-header-content\";}}s:30:\".ast-desktop-popup-content > *\";a:1:{i:1;a:1:{i:0;s:25:\"ast-desktop-popup-content\";}}s:31:\".ast-desktop-header-content > *\";a:1:{i:1;a:1:{i:0;s:26:\"ast-desktop-header-content\";}}}i:1;a:2:{i:0;s:15:\"padding-top:0px\";i:1;s:18:\"padding-bottom:0px\";}}i:509;a:2:{i:0;a:1:{s:53:\".content-align-flex-start .ast-builder-layout-element\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:26:\"ast-builder-layout-element\";}}}i:1;a:1:{i:0;s:26:\"justify-content:flex-start\";}}i:510;a:2:{i:0;a:1:{s:43:\".content-align-flex-start .main-header-menu\";a:1:{i:1;a:2:{i:0;s:24:\"content-align-flex-start\";i:1;s:16:\"main-header-menu\";}}}i:1;a:1:{i:0;s:15:\"text-align:left\";}}i:511;a:2:{i:0;a:1:{s:50:\".ast-mobile-popup-drawer.active .menu-toggle-close\";a:1:{i:1;a:3:{i:0;s:23:\"ast-mobile-popup-drawer\";i:1;s:6:\"active\";i:2;s:17:\"menu-toggle-close\";}}}i:1;a:1:{i:0;s:13:\"color:#3a3a3a\";}}i:512;a:2:{i:0;a:2:{s:47:\".ast-mobile-header-wrap .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}}s:49:\".ast-primary-header-bar .site-primary-header-wrap\";a:1:{i:1;a:2:{i:0;s:22:\"ast-primary-header-bar\";i:1;s:24:\"site-primary-header-wrap\";}}}i:1;a:1:{i:0;s:15:\"min-height:70px\";}}i:513;a:2:{i:0;a:1:{s:67:\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\";a:1:{i:1;a:4:{i:0;s:11:\"ast-desktop\";i:1;s:22:\"ast-primary-header-bar\";i:2;s:16:\"main-header-menu\";i:3;s:9:\"menu-item\";}}}i:1;a:1:{i:0;s:16:\"line-height:70px\";}}i:514;s:25:\"@media (max-width:921px){\";i:515;a:2:{i:0;a:2:{s:57:\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:22:\"ast-primary-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}s:55:\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\";a:2:{i:1;a:2:{i:0;s:22:\"ast-mobile-header-wrap\";i:1;s:20:\"ast-below-header-bar\";}i:2;a:1:{i:0;s:8:\"masthead\";}}}i:1;a:2:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";}}i:516;s:1:\"}\";i:517;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:518;s:25:\"@media (min-width:922px){\";i:519;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:3:{i:0;s:23:\"border-bottom-width:1px\";i:1;s:27:\"border-bottom-color:#eaeaea\";i:2;s:25:\"border-bottom-style:solid\";}}i:520;s:1:\"}\";i:521;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:522;a:2:{i:0;a:1:{s:23:\".ast-primary-header-bar\";a:1:{i:1;a:1:{i:0;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:523;s:25:\"@media (max-width:921px){\";i:524;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:525;s:1:\"}\";i:526;s:25:\"@media (max-width:544px){\";i:527;a:2:{i:0;a:1:{s:47:\".ast-header-break-point .ast-primary-header-bar\";a:1:{i:1;a:2:{i:0;s:22:\"ast-header-break-point\";i:1;s:22:\"ast-primary-header-bar\";}}}i:1;a:1:{i:0;s:12:\"display:grid\";}}i:528;s:1:\"}\";i:529;a:2:{i:0;a:1:{s:96:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:2:{i:0;s:15:\"ast-button-wrap\";i:1;s:31:\"ast-mobile-menu-trigger-minimal\";}}}i:1;a:3:{i:0;s:31:\"color:var(--ast-global-color-0)\";i:1;s:11:\"border:none\";i:2;s:22:\"background:transparent\";}}i:530;a:2:{i:0;a:1:{s:104:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:23:\"mobile-menu-toggle-icon\";i:2;s:14:\"ast-mobile-svg\";}}}i:1;a:3:{i:0;s:10:\"width:20px\";i:1;s:11:\"height:20px\";i:2;s:30:\"fill:var(--ast-global-color-0)\";}}i:531;a:2:{i:0;a:1:{s:94:\"[data-section=\"section-header-mobile-trigger\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\";a:2:{i:3;a:1:{i:0;s:12:\"data-section\";}i:1;a:3:{i:0;s:15:\"ast-button-wrap\";i:1;s:16:\"mobile-menu-wrap\";i:2;s:11:\"mobile-menu\";}}}i:1;a:1:{i:0;s:31:\"color:var(--ast-global-color-0)\";}}i:532;a:2:{i:0;a:1:{s:65:\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:9:\"menu-link\";}}}i:1;a:2:{i:0;s:19:\"font-family:inherit\";i:1;s:19:\"font-weight:inherit\";}}i:533;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:534;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:535;a:2:{i:0;a:3:{s:58:\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\";a:1:{i:1;a:3:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:16:\"main-header-menu\";}}s:79:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\";a:1:{i:1;a:5:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:9:\"menu-link\";}}s:89:\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\";a:1:{i:1;a:6:{i:0;s:14:\"ast-hfb-header\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";i:3;s:9:\"menu-item\";i:4;s:8:\"sub-menu\";i:5;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:17:\"border-style:none\";}}i:536;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:537;s:25:\"@media (max-width:921px){\";i:538;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:539;a:2:{i:0;a:1:{s:84:\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\";a:1:{i:1;a:4:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:22:\"menu-item-has-children\";i:3;s:9:\"menu-link\";}}}i:1;a:1:{i:0;s:13:\"content:unset\";}}i:540;s:1:\"}\";i:541;s:25:\"@media (max-width:544px){\";i:542;a:2:{i:0;a:1:{s:94:\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\";a:1:{i:1;a:5:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";i:2;s:9:\"menu-item\";i:3;s:22:\"menu-item-has-children\";i:4;s:15:\"ast-menu-toggle\";}}}i:1;a:1:{i:0;s:5:\"top:0\";}}i:543;s:1:\"}\";i:544;a:2:{i:0;a:1:{s:41:\".ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:2:{i:0;s:23:\"ast-builder-menu-mobile\";i:1;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:545;s:25:\"@media (max-width:921px){\";i:546;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:547;s:1:\"}\";i:548;s:25:\"@media (max-width:544px){\";i:549;a:2:{i:0;a:1:{s:65:\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\";a:1:{i:1;a:3:{i:0;s:22:\"ast-header-break-point\";i:1;s:23:\"ast-builder-menu-mobile\";i:2;s:15:\"main-navigation\";}}}i:1;a:1:{i:0;s:13:\"display:block\";}}i:550;s:1:\"}\";i:551;a:2:{i:0;a:1:{s:20:\".comment-reply-title\";a:1:{i:1;a:1:{i:0;s:19:\"comment-reply-title\";}}}i:1;a:2:{i:0;s:14:\"font-size:24px\";i:1;s:16:\"font-size:1.6rem\";}}i:552;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:4:{i:0;s:23:\"line-height:1.666666667\";i:1;s:31:\"color:var(--ast-global-color-0)\";i:2;s:14:\"font-size:12px\";i:3;s:15:\"font-size:.8rem\";}}i:553;a:2:{i:0;a:1:{s:44:\".ast-comment-list #cancel-comment-reply-link\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:2;a:1:{i:0;s:25:\"cancel-comment-reply-link\";}}}i:1;a:2:{i:0;s:14:\"font-size:15px\";i:1;s:14:\"font-size:1rem\";}}i:554;a:2:{i:0;a:1:{s:15:\".comments-title\";a:1:{i:1;a:1:{i:0;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:13:\"padding:2em 0\";}}i:555;a:2:{i:0;a:1:{s:15:\".comments-title\";a:1:{i:1;a:1:{i:0;s:14:\"comments-title\";}}}i:1;a:2:{i:0;s:18:\"font-weight:normal\";i:1;s:20:\"word-wrap:break-word\";}}i:556;a:2:{i:0;a:1:{s:17:\".ast-comment-list\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}}}i:1;a:4:{i:0;s:8:\"margin:0\";i:1;s:20:\"word-wrap:break-word\";i:2;s:19:\"padding-bottom:.5em\";i:3;s:15:\"list-style:none\";}}i:557;a:2:{i:0;a:1:{s:20:\".ast-comment-list li\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"list-style:none\";}}i:558;a:2:{i:0;a:1:{s:46:\".ast-comment-list .ast-comment-edit-reply-wrap\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:27:\"ast-comment-edit-reply-wrap\";}}}i:1;a:3:{i:0;s:16:\"-js-display:flex\";i:1;s:12:\"display:flex\";i:2;s:24:\"justify-content:flex-end\";}}i:559;a:2:{i:0;a:1:{s:32:\".ast-comment-list .ast-edit-link\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:13:\"ast-edit-link\";}}}i:1;a:1:{i:0;s:6:\"flex:1\";}}i:560;a:2:{i:0;a:1:{s:46:\".ast-comment-list .comment-awaiting-moderation\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:27:\"comment-awaiting-moderation\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:561;a:2:{i:0;a:1:{s:12:\".ast-comment\";a:1:{i:1;a:1:{i:0;s:11:\"ast-comment\";}}}i:1;a:1:{i:0;s:13:\"padding:1em 0\";}}i:562;a:2:{i:0;a:2:{s:25:\".ast-comment-info amp-img\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:26:\".ast-comment-info amp-anim\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:17:\"border-radius:50%\";}}i:563;a:2:{i:0;a:1:{s:27:\".ast-comment-cite-wrap cite\";a:2:{i:1;a:1:{i:0;s:21:\"ast-comment-cite-wrap\";}i:0;a:1:{i:0;s:4:\"cite\";}}}i:1;a:1:{i:0;s:17:\"font-style:normal\";}}i:564;a:2:{i:0;a:1:{s:20:\".comment-reply-title\";a:1:{i:1;a:1:{i:0;s:19:\"comment-reply-title\";}}}i:1;a:3:{i:0;s:15:\"padding-top:1em\";i:1;s:18:\"font-weight:normal\";i:2;s:16:\"line-height:1.65\";}}i:565;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:18:\"margin-bottom:.5em\";}}i:566;a:2:{i:0;a:1:{s:14:\".comments-area\";a:1:{i:1;a:1:{i:0;s:13:\"comments-area\";}}}i:1;a:2:{i:0;s:25:\"border-top:1px solid #eee\";i:1;s:14:\"margin-top:2em\";}}i:567;a:2:{i:0;a:1:{s:36:\".comments-area .comment-form-comment\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:20:\"comment-form-comment\";}}}i:1;a:4:{i:0;s:10:\"width:100%\";i:1;s:11:\"border:none\";i:2;s:8:\"margin:0\";i:3;s:9:\"padding:0\";}}i:568;a:2:{i:0;a:3:{s:29:\".comments-area .comment-notes\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:13:\"comment-notes\";}}s:32:\".comments-area .comment-textarea\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:16:\"comment-textarea\";}}s:33:\".comments-area .form-allowed-tags\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:17:\"form-allowed-tags\";}}}i:1;a:1:{i:0;s:19:\"margin-bottom:1.5em\";}}i:569;a:2:{i:0;a:1:{s:27:\".comments-area .form-submit\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:11:\"form-submit\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:570;a:2:{i:0;a:2:{s:31:\".comments-area textarea#comment\";a:3:{i:1;a:1:{i:0;s:13:\"comments-area\";}i:2;a:1:{i:0;s:7:\"comment\";}i:0;a:1:{i:0;s:8:\"textarea\";}}s:55:\".comments-area .ast-comment-formwrap input[type=\"text\"]\";a:3:{i:3;a:1:{i:0;s:4:\"type\";}i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:20:\"ast-comment-formwrap\";}i:0;a:1:{i:0;s:5:\"input\";}}}i:1;a:4:{i:0;s:10:\"width:100%\";i:1;s:15:\"border-radius:0\";i:2;s:21:\"vertical-align:middle\";i:3;s:18:\"margin-bottom:10px\";}}i:571;a:2:{i:0;a:1:{s:27:\".comments-area .no-comments\";a:1:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:11:\"no-comments\";}}}i:1;a:2:{i:0;s:15:\"margin-top:.5em\";i:1;s:18:\"margin-bottom:.5em\";}}i:572;a:2:{i:0;a:1:{s:29:\".comments-area p.logged-in-as\";a:2:{i:1;a:2:{i:0;s:13:\"comments-area\";i:1;s:12:\"logged-in-as\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:17:\"margin-bottom:1em\";}}i:573;a:2:{i:0;a:1:{s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}}i:1;a:2:{i:0;s:21:\"background-color:#fff\";i:1;s:22:\"padding:1.2em 3.99em 0\";}}i:574;a:2:{i:0;a:1:{s:38:\".ast-separate-container .comments-area\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:13:\"comments-area\";}}}i:1;a:1:{i:0;s:12:\"border-top:0\";}}i:575;a:2:{i:0;a:1:{s:41:\".ast-separate-container .ast-comment-list\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";}}}i:1;a:1:{i:0;s:16:\"padding-bottom:0\";}}i:576;a:2:{i:0;a:1:{s:44:\".ast-separate-container .ast-comment-list li\";a:2:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:21:\"background-color:#fff\";}}i:577;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:18:\"padding:4em 6.67em\";i:1;s:17:\"margin-bottom:2em\";}}i:578;s:27:\"@media (max-width: 1200px){\";i:579;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"padding:3em 3.34em\";}}i:580;s:1:\"}\";i:581;a:2:{i:0;a:1:{s:65:\".ast-separate-container .ast-comment-list li.depth-1 .children li\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";i:3;s:8:\"children\";}i:0;a:2:{i:0;s:2:\"li\";i:1;s:2:\"li\";}}}i:1;a:3:{i:0;s:16:\"padding-bottom:0\";i:1;s:13:\"padding-top:0\";i:2;s:15:\"margin-bottom:0\";}}i:582;a:2:{i:0;a:2:{s:65:\".ast-separate-container .ast-comment-list li.depth-1 .ast-comment\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";i:3;s:11:\"ast-comment\";}i:0;a:1:{i:0;s:2:\"li\";}}s:65:\".ast-separate-container .ast-comment-list li.depth-2 .ast-comment\";a:2:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-2\";i:3;s:11:\"ast-comment\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:15:\"border-bottom:0\";}}i:583;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .comment-respond\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:15:\"comment-respond\";}}}i:1;a:3:{i:0;s:13:\"padding-top:0\";i:1;s:18:\"padding-bottom:1em\";i:2;s:28:\"background-color:transparent\";}}i:584;a:2:{i:0;a:1:{s:53:\".ast-separate-container .ast-comment-list .pingback p\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:8:\"pingback\";}i:0;a:1:{i:0;s:1:\"p\";}}}i:1;a:1:{i:0;s:15:\"margin-bottom:0\";}}i:585;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:2:{i:0;s:11:\"padding:2em\";i:1;s:17:\"margin-bottom:1em\";}}i:586;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .bypostauthor li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:3:{i:0;s:22:\"background:transparent\";i:1;s:15:\"margin-bottom:0\";i:2;s:17:\"padding:0 0 0 2em\";}}i:587;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:3:{i:0;s:21:\"background-color:#fff\";i:1;s:18:\"padding:4em 6.67em\";i:2;s:15:\"border-bottom:0\";}}i:588;s:27:\"@media (max-width: 1200px){\";i:589;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:3em 2.34em\";}}i:590;s:1:\"}\";i:591;a:2:{i:0;a:1:{s:44:\".ast-separate-container .comment-reply-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:19:\"comment-reply-title\";}}}i:1;a:1:{i:0;s:13:\"padding-top:0\";}}i:592;a:2:{i:0;a:1:{s:18:\".comment-content a\";a:2:{i:1;a:1:{i:0;s:15:\"comment-content\";}i:0;a:1:{i:0;s:1:\"a\";}}}i:1;a:1:{i:0;s:20:\"word-wrap:break-word\";}}i:593;a:2:{i:0;a:1:{s:20:\".comment-form-legend\";a:1:{i:1;a:1:{i:0;s:19:\"comment-form-legend\";}}}i:1;a:2:{i:0;s:19:\"margin-bottom:unset\";i:1;s:14:\"padding:0 .5em\";}}i:594;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:15:\"margin-left:2em\";}}i:595;s:26:\"@media (max-width: 992px){\";i:596;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:15:\"margin-left:1em\";}}i:597;s:1:\"}\";i:598;a:2:{i:0;a:1:{s:44:\".ast-comment-list #cancel-comment-reply-link\";a:2:{i:1;a:1:{i:0;s:16:\"ast-comment-list\";}i:2;a:1:{i:0;s:25:\"cancel-comment-reply-link\";}}}i:1;a:4:{i:0;s:18:\"white-space:nowrap\";i:1;s:14:\"font-size:15px\";i:2;s:14:\"font-size:1rem\";i:3;s:15:\"margin-left:1em\";}}i:599;a:2:{i:0;a:1:{s:17:\".ast-comment-info\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-info\";}}}i:1;a:2:{i:0;s:12:\"display:flex\";i:1;s:17:\"position:relative\";}}i:600;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:2:{i:0;s:21:\"justify-content:right\";i:1;s:21:\"padding:0 3.4em 1.6em\";}}i:601;a:2:{i:0;a:1:{s:28:\".ast-comment-time .timendate\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-time\";i:1;s:9:\"timendate\";}}}i:1;a:1:{i:0;s:17:\"margin-right:.5em\";}}i:602;a:2:{i:0;a:1:{s:42:\".comments-area #wp-comment-cookies-consent\";a:2:{i:1;a:1:{i:0;s:13:\"comments-area\";}i:2;a:1:{i:0;s:26:\"wp-comment-cookies-consent\";}}}i:1;a:1:{i:0;s:17:\"margin-right:10px\";}}i:603;a:2:{i:0;a:1:{s:41:\".ast-page-builder-template .comments-area\";a:1:{i:1;a:2:{i:0;s:25:\"ast-page-builder-template\";i:1;s:13:\"comments-area\";}}}i:1;a:4:{i:0;s:17:\"padding-left:20px\";i:1;s:18:\"padding-right:20px\";i:2;s:12:\"margin-top:0\";i:3;s:17:\"margin-bottom:2em\";}}i:604;a:2:{i:0;a:1:{s:69:\".ast-separate-container .ast-comment-list .bypostauthor .bypostauthor\";a:1:{i:1;a:4:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";i:3;s:12:\"bypostauthor\";}}}i:1;a:5:{i:0;s:22:\"background:transparent\";i:1;s:15:\"margin-bottom:0\";i:2;s:15:\"padding-right:0\";i:3;s:16:\"padding-bottom:0\";i:4;s:13:\"padding-top:0\";}}i:605;s:25:\"@media (min-width:922px){\";i:606;a:2:{i:0;a:1:{s:61:\".ast-separate-container .ast-comment-list li .comment-respond\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:15:\"comment-respond\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:22:\"padding-left:2.66666em\";i:1;s:23:\"padding-right:2.66666em\";}}i:607;s:1:\"}\";i:608;s:25:\"@media (max-width:544px){\";i:609;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:2:{i:0;s:17:\"padding:1.5em 1em\";i:1;s:19:\"margin-bottom:1.5em\";}}i:610;a:2:{i:0;a:1:{s:55:\".ast-separate-container .ast-comment-list .bypostauthor\";a:1:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}}}i:1;a:1:{i:0;s:12:\"padding:.5em\";}}i:611;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:17:\"padding:1.5em 1em\";}}i:612;a:2:{i:0;a:1:{s:58:\".ast-separate-container .ast-comment-list .bypostauthor li\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:12:\"bypostauthor\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:18:\"padding:0 0 0 .5em\";}}i:613;a:2:{i:0;a:1:{s:27:\".ast-comment-list .children\";a:1:{i:1;a:2:{i:0;s:16:\"ast-comment-list\";i:1;s:8:\"children\";}}}i:1;a:1:{i:0;s:20:\"margin-left:.66666em\";}}i:614;s:1:\"}\";i:615;s:25:\"@media (max-width:921px){\";i:616;a:2:{i:0;a:2:{s:32:\".ast-comment-avatar-wrap amp-img\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:7:\"amp-img\";}}s:33:\".ast-comment-avatar-wrap amp-anim\";a:2:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}i:0;a:1:{i:0;s:8:\"amp-anim\";}}}i:1;a:1:{i:0;s:15:\"max-width:2.5em\";}}i:617;a:2:{i:0;a:1:{s:14:\".comments-area\";a:1:{i:1;a:1:{i:0;s:13:\"comments-area\";}}}i:1;a:1:{i:0;s:16:\"margin-top:1.5em\";}}i:618;a:2:{i:0;a:1:{s:39:\".ast-separate-container .comments-title\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:14:\"comments-title\";}}}i:1;a:1:{i:0;s:21:\"padding:1.43em 1.48em\";}}i:619;a:2:{i:0;a:1:{s:17:\".ast-comment-meta\";a:1:{i:1;a:1:{i:0;s:16:\"ast-comment-meta\";}}}i:1;a:1:{i:0;s:27:\"padding:0 1.8888em 1.3333em\";}}i:620;a:2:{i:0;a:1:{s:52:\".ast-separate-container .ast-comment-list li.depth-1\";a:2:{i:1;a:3:{i:0;s:22:\"ast-separate-container\";i:1;s:16:\"ast-comment-list\";i:2;s:7:\"depth-1\";}i:0;a:1:{i:0;s:2:\"li\";}}}i:1;a:1:{i:0;s:20:\"padding:1.5em 2.14em\";}}i:621;a:2:{i:0;a:1:{s:40:\".ast-separate-container .comment-respond\";a:1:{i:1;a:2:{i:0;s:22:\"ast-separate-container\";i:1;s:15:\"comment-respond\";}}}i:1;a:1:{i:0;s:18:\"padding:2em 2.14em\";}}i:622;a:2:{i:0;a:1:{s:24:\".ast-comment-avatar-wrap\";a:1:{i:1;a:1:{i:0;s:23:\"ast-comment-avatar-wrap\";}}}i:1;a:1:{i:0;s:17:\"margin-right:.5em\";}}i:623;s:1:\"}\";}s:18:\"validation_results\";a:0:{}s:18:\"imported_font_urls\";a:0:{}s:4:\"hash\";s:32:\"543d9be378ad6e36435ce92a1ab60206\";s:10:\"parse_time\";d:0.10375595092773438;s:14:\"viewport_rules\";a:0:{}s:15:\"important_count\";i:0;s:17:\"preload_font_urls\";a:0:{}}','off'),
(163326,'wpseo_llms_txt_content_hash','','auto'),
(163334,'fm_key','uyjtIh2i0Q8erHnCWR5lBLoca','auto'),
(166389,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/id_ID/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"id_ID\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/id_ID/wordpress-6.8.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1762023917;s:15:\"version_checked\";s:5:\"6.8.3\";s:12:\"translations\";a:0:{}}','off'),
(166728,'using_application_passwords','1','off'),
(166997,'_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1761993800','off'),
(166998,'_site_transient_php_check_38979a08dcd71638878b7b4419751271','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','off'),
(167144,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1762023918;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:11:\"amp/amp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"w.org/plugins/amp\";s:4:\"slug\";s:3:\"amp\";s:6:\"plugin\";s:11:\"amp/amp.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:34:\"https://wordpress.org/plugins/amp/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/amp.2.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";s:3:\"svg\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/amp/assets/banner-1544x500.png?rev=2527602\";s:2:\"1x\";s:58:\"https://ps.w.org/amp/assets/banner-772x250.png?rev=2527602\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:5:\"7.6.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"26.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.7\";}}s:7:\"checked\";a:5:{s:11:\"amp/amp.php\";s:5:\"2.5.5\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.7\";s:35:\"litespeed-cache/litespeed-cache.php\";s:5:\"7.6.2\";s:23:\"wp-compat/wp-compat.php\";s:5:\"1.3.2\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"26.2\";}}','off'),
(167165,'_site_transient_timeout_browser_ac0a07bdfc0b291a92007f13d7a7ded8','1762056099','off'),
(167166,'_site_transient_browser_ac0a07bdfc0b291a92007f13d7a7ded8','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"108.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";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;}','off'),
(168277,'_site_transient_timeout_browser_9c1ce27f08b16479d2e17743062b28ed','1762420336','off'),
(168278,'_site_transient_browser_9c1ce27f08b16479d2e17743062b28ed','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"120.0.0.0\";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;}','off'),
(168758,'_site_transient_timeout_browser_eaf3a6f2557c3674082ed7543b7fe033','1762571356','off'),
(168759,'_site_transient_browser_eaf3a6f2557c3674082ed7543b7fe033','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";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;}','off'),
(168915,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1762023919;s:7:\"checked\";a:2:{s:7:\"mabar88\";s:3:\"2.0\";s:16:\"twentytwentyfive\";s:3:\"1.0\";}s:8:\"response\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),
(168925,'_site_transient_timeout_theme_roots','1762029381','off'),
(168926,'_site_transient_theme_roots','a:2:{s:7:\"mabar88\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}','off'),
(168940,'_site_transient_timeout_available_translations','1762044730','off'),
(168941,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.0.11/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.7/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-10 08:09:09\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.7/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.28/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-06-26 09:35:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-11-01 16:41:58\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.8/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-29 09:22:47\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-09 08:25:54\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-05 08:42:11\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-23 11:26:14\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-28 10:25:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-23 12:02:03\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-11-01 00:08:29\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-11-01 00:07:49\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.8.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-28 10:25:24\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.8.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.8/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-22 13:46:55\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-29 13:22:09\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-08-19 23:02:24\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-05-22 11:56:25\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-08 12:55:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-21 17:41:39\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-08-19 08:40:47\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-09 03:23:24\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-24 16:10:21\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.7/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.8/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.12\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.12/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.18\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.18/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.23\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.23/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-30 21:17:40\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 22:54:47\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-02 21:15:15\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-08 01:26:01\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-05 12:26:55\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-02 18:18:37\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 04:49:09\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-25 05:20:17\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.7\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 15:38:59\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2025-10-21 16:35:04\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.8/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-29 21:50:08\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-08-29 04:27:18\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.34\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.34/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.8/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-18 08:52:05\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.8/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-18 06:36:37\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-23 03:46:40\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.28/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-14 17:47:58\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-03 12:44:05\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.28/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-04-14 08:02:58\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.23\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.23/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-29 19:46:21\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 23:59:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-31 00:26:34\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.8.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-15 12:39:47\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.8.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-27 20:51:17\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-07-15 19:11:43\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.0.11/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-28 17:29:15\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.7\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.7/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-08-26 17:30:52\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.17\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.17/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.39\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.39/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-09 19:23:11\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-14 15:29:10\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 07:26:29\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-15 13:45:15\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-30 13:15:15\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.8.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-03 22:11:25\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.35\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.35/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-10 08:00:47\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-10 08:01:51\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.8.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-27 23:52:28\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.7/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-27 09:09:11\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-30 19:16:19\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.18\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.18/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-13 06:23:32\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-04-24 16:58:02\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.8.3/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-29 11:19:02\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-04-18 09:38:51\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-23 11:49:16\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-15 10:44:57\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-06-28 12:50:48\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.39\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.39/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.12\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.12/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-10 17:38:55\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-23 11:58:31\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-10 20:06:35\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"6.8\";s:7:\"updated\";s:19:\"2025-04-18 21:10:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.8/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.18\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.18/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-09-01 09:12:13\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-01 08:48:55\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.8.3\";s:7:\"updated\";s:19:\"2025-10-27 07:52:03\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.8\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.8/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),
(168950,'category_children','a:58:{i:505;a:1:{i:0;i:506;}i:507;a:1:{i:0;i:508;}i:509;a:1:{i:0;i:510;}i:511;a:1:{i:0;i:512;}i:513;a:1:{i:0;i:514;}i:516;a:1:{i:0;i:517;}i:518;a:1:{i:0;i:519;}i:533;a:1:{i:0;i:534;}i:535;a:1:{i:0;i:536;}i:537;a:1:{i:0;i:538;}i:539;a:1:{i:0;i:540;}i:541;a:1:{i:0;i:542;}i:543;a:1:{i:0;i:544;}i:545;a:1:{i:0;i:546;}i:552;a:1:{i:0;i:553;}i:556;a:1:{i:0;i:557;}i:559;a:1:{i:0;i:560;}i:567;a:1:{i:0;i:568;}i:570;a:1:{i:0;i:571;}i:573;a:1:{i:0;i:574;}i:575;a:1:{i:0;i:576;}i:577;a:1:{i:0;i:578;}i:579;a:1:{i:0;i:580;}i:581;a:1:{i:0;i:582;}i:583;a:1:{i:0;i:584;}i:585;a:1:{i:0;i:586;}i:590;a:1:{i:0;i:591;}i:592;a:1:{i:0;i:593;}i:594;a:2:{i:0;i:595;i:1;i:607;}i:596;a:1:{i:0;i:597;}i:598;a:1:{i:0;i:599;}i:600;a:1:{i:0;i:601;}i:602;a:1:{i:0;i:603;}i:604;a:1:{i:0;i:605;}i:608;a:1:{i:0;i:609;}i:614;a:1:{i:0;i:615;}i:616;a:1:{i:0;i:617;}i:618;a:1:{i:0;i:619;}i:620;a:1:{i:0;i:621;}i:623;a:1:{i:0;i:624;}i:625;a:1:{i:0;i:626;}i:630;a:1:{i:0;i:631;}i:632;a:1:{i:0;i:633;}i:634;a:1:{i:0;i:635;}i:638;a:1:{i:0;i:639;}i:641;a:1:{i:0;i:642;}i:643;a:1:{i:0;i:644;}i:647;a:1:{i:0;i:648;}i:654;a:1:{i:0;i:655;}i:656;a:1:{i:0;i:657;}i:658;a:1:{i:0;i:659;}i:660;a:1:{i:0;i:661;}i:662;a:1:{i:0;i:663;}i:665;a:1:{i:0;i:666;}i:667;a:1:{i:0;i:668;}i:669;a:1:{i:0;i:670;}i:671;a:1:{i:0;i:672;}i:673;a:1:{i:0;i:674;}}','auto'),
(168960,'_site_transient_timeout_wp_theme_files_patterns-f427301ce929f7a1fab9e285dfbb8c52','1762044439','off'),
(168961,'_site_transient_wp_theme_files_patterns-f427301ce929f7a1fab9e285dfbb8c52','a:2:{s:7:\"version\";s:3:\"2.0\";s:8:\"patterns\";a:0:{}}','off'),
(168962,'_transient_timeout_astra-theme-cron-test-ok','1762046661','off'),
(168963,'_transient_astra-theme-cron-test-ok','1','off');
/*!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 = utf8mb4 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3247 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
(3,6,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.4\";s:14:\"classic-editor\";s:5:\"1.6.4\";s:15:\"litespeed-cache\";s:5:\"6.4.1\";s:13:\"wordpress-seo\";s:4:\"23.3\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(4,6,'_amp_queried_object','a:2:{s:2:\"id\";i:1;s:4:\"type\";s:4:\"post\";}'),
(6,7,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.4\";s:14:\"classic-editor\";s:5:\"1.6.4\";s:15:\"litespeed-cache\";s:5:\"6.4.1\";s:13:\"wordpress-seo\";s:4:\"23.3\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(7,7,'_amp_queried_object','a:2:{s:2:\"id\";i:2;s:4:\"type\";s:4:\"post\";}'),
(21,13,'_wp_attached_file','2024/08/Mabar-Favicon.jpg'),
(22,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2024/08/Mabar-Favicon.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Mabar-Favicon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Mabar-Favicon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(23,13,'_wp_attachment_image_alt','Lion288 Favicon'),
(24,14,'_wp_attachment_image_alt','Lion288 Favicon'),
(25,14,'_wp_attached_file','2024/08/cropped-Mabar-Favicon.jpg'),
(26,14,'_wp_attachment_context','site-icon'),
(27,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2024/08/cropped-Mabar-Favicon.jpg\";s:8:\"filesize\";i:23794;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"cropped-Mabar-Favicon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"cropped-Mabar-Favicon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5578;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:33:\"cropped-Mabar-Favicon-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11260;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:33:\"cropped-Mabar-Favicon-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7452;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:33:\"cropped-Mabar-Favicon-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6818;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:31:\"cropped-Mabar-Favicon-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:982;}}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,20,'_edit_last','1'),
(45,20,'_edit_lock','1759645634:1'),
(46,21,'_wp_attached_file','2024/08/Indukan-Mabar88.png'),
(47,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:514;s:6:\"height\";i:747;s:4:\"file\";s:27:\"2024/08/Indukan-Mabar88.png\";s:8:\"filesize\";i:178951;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Indukan-Mabar88-206x300.png\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145778;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Indukan-Mabar88-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61091;}}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,21,'_wp_attachment_image_alt','Lion288AV'),
(49,20,'_thumbnail_id','21'),
(50,20,'_wp_page_template','default'),
(51,20,'site-sidebar-layout','default'),
(52,20,'site-content-layout','default'),
(53,20,'theme-transparent-header-meta','default'),
(54,20,'_yoast_wpseo_focuskw','Lion288'),
(55,20,'_yoast_wpseo_title','%%title%% %%sep%% Mission Digital Baru Level Up Cepat Jadi Champion'),
(56,20,'_yoast_wpseo_metadesc','Mission digital baru Lion288 hadir bantu level up cepat, quest seru, strategi efektif, dan hadiah besar untuk champion Lion 288.'),
(57,20,'_yoast_wpseo_linkdex','53'),
(58,20,'_yoast_wpseo_content_score','90'),
(59,20,'_yoast_wpseo_is_cornerstone','1'),
(60,20,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(61,20,'_yoast_wpseo_meta-robots-noindex','2'),
(62,20,'_yoast_wpseo_canonical','https://lion288slot.com'),
(69,26,'_edit_last','1'),
(70,26,'_edit_lock','1724963074:1'),
(71,27,'_wp_attached_file','2024/08/Mabar.jpg'),
(72,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:17:\"2024/08/Mabar.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"Mabar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(73,27,'_wp_attachment_image_alt','Lion288 Daftar'),
(74,26,'_thumbnail_id','27'),
(76,26,'site-sidebar-layout','default'),
(77,26,'site-content-layout','default'),
(78,26,'theme-transparent-header-meta','default'),
(79,26,'_yoast_wpseo_primary_category',''),
(80,26,'_yoast_wpseo_focuskw','Lion288 Daftar'),
(81,26,'_yoast_wpseo_title','%%title%% %%sep%% Agen Game Dengan Keuntungan Besar Trusted'),
(82,26,'_yoast_wpseo_metadesc','Lion288 Daftar adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(83,26,'_yoast_wpseo_linkdex','49'),
(84,26,'_yoast_wpseo_content_score','90'),
(85,26,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(86,26,'_yoast_wpseo_meta-robots-noindex','2'),
(87,26,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-daftar/'),
(88,41,'_wp_attached_file','2024/08/Mabar-1.jpg'),
(89,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-1.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(90,41,'_wp_attachment_image_alt','Lion288 Register'),
(91,29,'_edit_last','1'),
(92,29,'_edit_lock','1724963074:1'),
(93,29,'_thumbnail_id','41'),
(95,29,'site-sidebar-layout','default'),
(96,29,'site-content-layout','default'),
(97,29,'theme-transparent-header-meta','default'),
(98,29,'_yoast_wpseo_primary_category',''),
(99,29,'_yoast_wpseo_focuskw','Lion288 Register'),
(100,29,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Populer Prize Terpopuler'),
(101,29,'_yoast_wpseo_metadesc','Lion288 Register adalah pengalaman bermain exclusive Big Win dalam istimewa, dan nikmati besar spektakuler terbaik.'),
(102,29,'_yoast_wpseo_linkdex','49'),
(103,29,'_yoast_wpseo_content_score','90'),
(104,29,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(105,29,'_yoast_wpseo_meta-robots-noindex','2'),
(106,29,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-register/'),
(107,30,'_edit_last','1'),
(108,30,'_edit_lock','1724963074:1'),
(109,43,'_wp_attached_file','2024/08/Mabar-2.jpg'),
(110,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-2.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(111,43,'_wp_attachment_image_alt','Lion288 Login'),
(112,30,'_thumbnail_id','43'),
(113,30,'site-sidebar-layout','default'),
(114,30,'site-content-layout','default'),
(115,30,'theme-transparent-header-meta','default'),
(116,30,'_yoast_wpseo_primary_category',''),
(117,30,'_yoast_wpseo_focuskw','Lion288 Login'),
(118,30,'_yoast_wpseo_title','%%title%% %%sep%% Agen Game Online Big Win Dan Terbaik Populer'),
(119,30,'_yoast_wpseo_metadesc','Lion288 Login adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(120,30,'_yoast_wpseo_linkdex','49'),
(121,30,'_yoast_wpseo_content_score','90'),
(122,30,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(123,30,'_yoast_wpseo_meta-robots-noindex','2'),
(124,30,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-login/'),
(125,31,'_edit_last','1'),
(126,31,'_edit_lock','1724963074:1'),
(127,45,'_wp_attached_file','2024/08/Mabar-3.jpg'),
(128,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-3.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(129,45,'_wp_attachment_image_alt','Lion288 Download'),
(130,31,'_thumbnail_id','45'),
(131,31,'site-sidebar-layout','default'),
(132,31,'site-content-layout','default'),
(133,31,'theme-transparent-header-meta','default'),
(134,31,'_yoast_wpseo_primary_category',''),
(135,31,'_yoast_wpseo_focuskw','Lion288 Download'),
(136,31,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Populer Prize Pool'),
(137,31,'_yoast_wpseo_metadesc','Lion288 Download adalah pengalaman bermain exclusive Big Win dalam istimewa, dan nikmati besar spektakuler terbaik.'),
(138,31,'_yoast_wpseo_linkdex','49'),
(139,31,'_yoast_wpseo_content_score','90'),
(140,31,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(141,31,'_yoast_wpseo_meta-robots-noindex','2'),
(142,31,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-download/'),
(143,32,'_edit_last','1'),
(144,32,'_edit_lock','1724963074:1'),
(145,47,'_wp_attached_file','2024/08/Mabar-4.jpg'),
(146,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-4.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(147,47,'_wp_attachment_image_alt','Lion288 Online'),
(148,32,'_thumbnail_id','47'),
(149,32,'site-sidebar-layout','default'),
(150,32,'site-content-layout','default'),
(151,32,'theme-transparent-header-meta','default'),
(152,32,'_yoast_wpseo_primary_category',''),
(153,32,'_yoast_wpseo_focuskw','Lion288 Online'),
(154,32,'_yoast_wpseo_title','%%title%% %%sep%% Situs Dengan Games Online Terkenal Exclusive'),
(155,32,'_yoast_wpseo_metadesc','Lion288 Online adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(156,32,'_yoast_wpseo_linkdex','49'),
(157,32,'_yoast_wpseo_content_score','90'),
(158,32,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(159,32,'_yoast_wpseo_meta-robots-noindex','2'),
(160,32,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-online/'),
(161,33,'_edit_last','1'),
(162,33,'_edit_lock','1724963074:1'),
(163,49,'_wp_attached_file','2024/08/Mabar-5.jpg'),
(164,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-5.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(165,49,'_wp_attachment_image_alt','Lion288 Link'),
(166,33,'_thumbnail_id','49'),
(167,33,'site-sidebar-layout','default'),
(168,33,'site-content-layout','default'),
(169,33,'theme-transparent-header-meta','default'),
(170,33,'_yoast_wpseo_primary_category',''),
(171,33,'_yoast_wpseo_focuskw','Lion288 Link'),
(172,33,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Populer Prize Pool Terpopuler'),
(173,33,'_yoast_wpseo_metadesc','Lion288 Link adalah pengalaman bermain exclusive Big Win dalam istimewa, dan nikmati besar spektakuler terbaik.'),
(174,33,'_yoast_wpseo_linkdex','49'),
(175,33,'_yoast_wpseo_content_score','90'),
(176,33,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(177,33,'_yoast_wpseo_meta-robots-noindex','2'),
(178,33,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-link/'),
(179,34,'_edit_last','1'),
(180,34,'_edit_lock','1724963074:1'),
(181,51,'_wp_attached_file','2024/08/Mabar-6.jpg'),
(182,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-6.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(183,51,'_wp_attachment_image_alt','Lion288 Alternatif'),
(184,34,'_thumbnail_id','51'),
(185,34,'site-sidebar-layout','default'),
(186,34,'site-content-layout','default'),
(187,34,'theme-transparent-header-meta','default'),
(188,34,'_yoast_wpseo_primary_category',''),
(189,34,'_yoast_wpseo_focuskw','Lion288 Alternatif'),
(190,34,'_yoast_wpseo_title','%%title%% %%sep%% Agen Game Online Big Win Dan Populer'),
(191,34,'_yoast_wpseo_metadesc','Lion288 Alternatif adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(192,34,'_yoast_wpseo_linkdex','49'),
(193,34,'_yoast_wpseo_content_score','90'),
(194,34,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(195,34,'_yoast_wpseo_meta-robots-noindex','2'),
(196,34,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-alternatif/'),
(197,35,'_edit_last','1'),
(198,35,'_edit_lock','1724963074:1'),
(199,53,'_wp_attached_file','2024/08/Mabar-7.jpg'),
(200,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-7.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(201,53,'_wp_attachment_image_alt','Lion288 Link Alternatif'),
(202,35,'_thumbnail_id','53'),
(203,35,'site-sidebar-layout','default'),
(204,35,'site-content-layout','default'),
(205,35,'theme-transparent-header-meta','default'),
(206,35,'_yoast_wpseo_primary_category',''),
(207,35,'_yoast_wpseo_focuskw','Lion288 Link Alternatif'),
(208,35,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Populer Prize Pool'),
(209,35,'_yoast_wpseo_metadesc','Lion288 Link Alternatif adalah pengalaman bermain exclusive Big Win dalam istimewa, dan nikmati besar spektakuler terbaik.'),
(210,35,'_yoast_wpseo_linkdex','49'),
(211,35,'_yoast_wpseo_content_score','90'),
(212,35,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(213,35,'_yoast_wpseo_meta-robots-noindex','2'),
(214,35,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-link-alternatif/'),
(215,36,'_edit_last','1'),
(216,36,'_edit_lock','1724963075:1'),
(217,55,'_wp_attached_file','2024/08/Mabar-8.jpg'),
(218,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-8.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(219,55,'_wp_attachment_image_alt','Download Lion288 Apk Mobile'),
(220,36,'_thumbnail_id','55'),
(221,36,'site-sidebar-layout','default'),
(222,36,'site-content-layout','default'),
(223,36,'theme-transparent-header-meta','default'),
(224,36,'_yoast_wpseo_primary_category',''),
(225,36,'_yoast_wpseo_focuskw','Download Lion288 Apk Mobile'),
(226,36,'_yoast_wpseo_title','%%title%% %%sep%% Agen Game Besar Every Day'),
(227,36,'_yoast_wpseo_metadesc','Download Lion288 Apk Mobile adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(228,36,'_yoast_wpseo_linkdex','49'),
(229,36,'_yoast_wpseo_content_score','90'),
(230,36,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(231,36,'_yoast_wpseo_meta-robots-noindex','2'),
(232,36,'_yoast_wpseo_canonical','https://lion288slot.com/download-lion288-apk-mobile/'),
(233,37,'_edit_last','1'),
(234,37,'_edit_lock','1724963075:1'),
(235,57,'_wp_attached_file','2024/08/Mabar-9.jpg'),
(236,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2024/08/Mabar-9.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(237,57,'_wp_attachment_image_alt','Link Alternatif Lion288'),
(238,37,'_thumbnail_id','57'),
(239,37,'site-sidebar-layout','default'),
(240,37,'site-content-layout','default'),
(241,37,'theme-transparent-header-meta','default'),
(242,37,'_yoast_wpseo_primary_category',''),
(243,37,'_yoast_wpseo_focuskw','Link Alternatif Lion288'),
(244,37,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Populer Prize'),
(245,37,'_yoast_wpseo_metadesc','Link Alternatif Lion288 adalah pengalaman bermain exclusive Big Win dalam istimewa, dan nikmati besar spektakuler terbaik.'),
(246,37,'_yoast_wpseo_linkdex','49'),
(247,37,'_yoast_wpseo_content_score','90'),
(248,37,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(249,37,'_yoast_wpseo_meta-robots-noindex','2'),
(250,37,'_yoast_wpseo_canonical','https://lion288slot.com/link-alternatif-lion288/'),
(251,38,'_edit_last','1'),
(252,38,'_edit_lock','1724963075:1'),
(253,59,'_wp_attached_file','2024/08/Mabar-10.jpg'),
(254,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2024/08/Mabar-10.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(255,59,'_wp_attachment_image_alt','Daftar Lion288'),
(256,38,'_thumbnail_id','59'),
(258,38,'_wp_old_date','2024-08-30'),
(259,38,'site-sidebar-layout','default'),
(260,38,'site-content-layout','default'),
(261,38,'theme-transparent-header-meta','default'),
(262,38,'_yoast_wpseo_primary_category',''),
(263,38,'_yoast_wpseo_focuskw','Daftar Lion288'),
(264,38,'_yoast_wpseo_title','%%title%% %%sep%% Situs Dengan Games Online Terkenal Exclusive'),
(265,38,'_yoast_wpseo_metadesc','Daftar Lion288 adalah permainan online dengan prize pool dalam gaming tak tertandingi dan peluang meraih hadiah besar.'),
(266,38,'_yoast_wpseo_linkdex','49'),
(267,38,'_yoast_wpseo_content_score','90'),
(268,38,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(269,38,'_yoast_wpseo_meta-robots-noindex','2'),
(270,38,'_yoast_wpseo_canonical','https://lion288slot.com/daftar-lion288/'),
(379,67,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(380,67,'_amp_queried_object','a:2:{s:2:\"id\";i:20;s:4:\"type\";s:4:\"post\";}'),
(385,69,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(386,69,'_amp_queried_object','a:2:{s:2:\"id\";i:1;s:4:\"type\";s:4:\"term\";}'),
(388,70,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(389,70,'_amp_queried_object','a:2:{s:2:\"id\";i:1;s:4:\"type\";s:4:\"user\";}'),
(393,72,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(395,67,'_wp_old_date','2024-12-07'),
(399,69,'_wp_old_date','2024-12-07'),
(401,70,'_wp_old_date','2024-12-07'),
(405,72,'_wp_old_date','2024-12-07'),
(407,67,'_wp_old_date','2024-12-14'),
(409,69,'_wp_old_date','2024-12-14'),
(410,70,'_wp_old_date','2024-12-14'),
(412,72,'_wp_old_date','2024-12-14'),
(413,67,'_wp_old_date','2024-12-17'),
(415,69,'_wp_old_date','2024-12-17'),
(416,70,'_wp_old_date','2024-12-17'),
(418,72,'_wp_old_date','2024-12-17'),
(420,67,'_wp_old_date','2024-12-19'),
(422,69,'_wp_old_date','2024-12-19'),
(423,70,'_wp_old_date','2024-12-19'),
(425,72,'_wp_old_date','2024-12-19'),
(427,67,'_wp_old_date','2024-12-26'),
(429,69,'_wp_old_date','2024-12-26'),
(430,70,'_wp_old_date','2024-12-26'),
(434,72,'_wp_old_date','2024-12-26'),
(436,67,'_wp_old_date','2025-01-02'),
(438,69,'_wp_old_date','2025-01-02'),
(439,70,'_wp_old_date','2025-01-02'),
(441,72,'_wp_old_date','2025-01-02'),
(442,67,'_wp_old_date','2025-01-08'),
(444,69,'_wp_old_date','2025-01-08'),
(445,70,'_wp_old_date','2025-01-08'),
(447,72,'_wp_old_date','2025-01-08'),
(448,67,'_wp_old_date','2025-01-15'),
(450,69,'_wp_old_date','2025-01-15'),
(451,70,'_wp_old_date','2025-01-15'),
(453,72,'_wp_old_date','2025-01-15'),
(455,84,'_wp_attached_file','2025/01/Mabar.jpg'),
(456,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:17:\"2025/01/Mabar.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"Mabar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(457,84,'_wp_attachment_image_alt','Lion288 Slot'),
(458,83,'_edit_last','1'),
(459,83,'_thumbnail_id','84'),
(460,83,'site-sidebar-layout','default'),
(461,83,'site-content-layout','default'),
(462,83,'theme-transparent-header-meta','default'),
(463,83,'_yoast_wpseo_primary_category',''),
(464,83,'_yoast_wpseo_focuskw','Lion288 Slot'),
(465,83,'_yoast_wpseo_title','%%title%% %%sep%% Portal Online Menyediakan Banyak Pilihan'),
(466,83,'_yoast_wpseo_metadesc','Lion288 Slot Portal game online yang menyediakan banyak pilihan game seru, keamanan terjamin, dan layanan pelanggan yang responsif.'),
(467,83,'_yoast_wpseo_linkdex','49'),
(468,83,'_yoast_wpseo_content_score','90'),
(469,83,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(470,83,'_edit_lock','1737565317:1'),
(472,83,'_wp_old_date','2025-01-22'),
(473,83,'_yoast_wpseo_meta-robots-noindex','2'),
(474,83,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-slot/'),
(475,75,'_edit_last','1'),
(476,75,'_edit_lock','1737565318:1'),
(477,86,'_wp_attached_file','2025/01/Mabar-1.jpg'),
(478,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-1.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(479,86,'_wp_attachment_image_alt','Lion288 Slot Login'),
(480,75,'_thumbnail_id','86'),
(481,75,'site-sidebar-layout','default'),
(482,75,'site-content-layout','default'),
(483,75,'theme-transparent-header-meta','default'),
(484,75,'_yoast_wpseo_primary_category',''),
(485,75,'_yoast_wpseo_focuskw','Lion288 Slot Login'),
(486,75,'_yoast_wpseo_title','%%title%% %%sep%% Platform Gaming Dengan Layanan Unggulan'),
(487,75,'_yoast_wpseo_metadesc','Lion288 Slot Login Platform gaming online dengan layanan unggulan, berbagai pilihan game menarik, dan keamanan tinggi untuk kenyamanan.'),
(488,75,'_yoast_wpseo_linkdex','49'),
(489,75,'_yoast_wpseo_content_score','90'),
(490,75,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(491,75,'_yoast_wpseo_meta-robots-noindex','2'),
(492,75,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-slot-login/'),
(493,76,'_edit_last','1'),
(494,76,'_edit_lock','1737565318:1'),
(495,88,'_wp_attached_file','2025/01/Mabar-2.jpg'),
(496,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-2.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(497,88,'_wp_attachment_image_alt','Lion288 Hoki'),
(498,76,'_thumbnail_id','88'),
(499,76,'site-sidebar-layout','default'),
(500,76,'site-content-layout','default'),
(501,76,'theme-transparent-header-meta','default'),
(502,76,'_yoast_wpseo_primary_category',''),
(503,76,'_yoast_wpseo_focuskw','Lion288 Hoki'),
(504,76,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Dengan Banyak Bonus'),
(505,76,'_yoast_wpseo_metadesc','Lion288 Hoki Situs game online dengan banyak bonus menarik, keamanan tinggi, serta layanan pelanggan yang handal dan responsif.'),
(506,76,'_yoast_wpseo_linkdex','49'),
(507,76,'_yoast_wpseo_content_score','90'),
(508,76,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(509,76,'_yoast_wpseo_meta-robots-noindex','2'),
(510,76,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-hoki/'),
(511,77,'_edit_last','1'),
(512,77,'_edit_lock','1737565318:1'),
(513,90,'_wp_attached_file','2025/01/Mabar-3.jpg'),
(514,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-3.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(515,90,'_wp_attachment_image_alt','Lion288 Gacor'),
(516,77,'_thumbnail_id','90'),
(517,77,'site-sidebar-layout','default'),
(518,77,'site-content-layout','default'),
(519,77,'theme-transparent-header-meta','default'),
(520,77,'_yoast_wpseo_primary_category',''),
(521,77,'_yoast_wpseo_focuskw','Lion288 Gacor'),
(522,77,'_yoast_wpseo_title','%%title%% %%sep%% Mainkan Game Online Favorit Dengan Aman'),
(523,77,'_yoast_wpseo_metadesc','Lion288 Gacor Mainkan game online favorit Anda dengan aman di situs terpercaya dilengkapi sistem keamanan modern dan layanan cepat.'),
(524,77,'_yoast_wpseo_linkdex','49'),
(525,77,'_yoast_wpseo_content_score','90'),
(526,77,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(527,77,'_yoast_wpseo_meta-robots-noindex','2'),
(528,77,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-gacor/'),
(529,78,'_edit_last','1'),
(530,78,'_edit_lock','1737565318:1'),
(531,92,'_wp_attached_file','2025/01/Mabar-4.jpg'),
(532,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-4.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(533,92,'_wp_attachment_image_alt','Lion288 Pulsa'),
(534,78,'_thumbnail_id','92'),
(535,78,'site-sidebar-layout','default'),
(536,78,'site-content-layout','default'),
(537,78,'theme-transparent-header-meta','default'),
(538,78,'_yoast_wpseo_primary_category',''),
(539,78,'_yoast_wpseo_focuskw','Lion288 Pulsa'),
(540,78,'_yoast_wpseo_title','%%title%% %%sep%% Portal Game Online Dengan Fitur Canggih'),
(541,78,'_yoast_wpseo_metadesc','Lion288 Pulsa Portal game online dengan beragam fitur canggih, keamanan tinggi, dan berbagai pilihan game untuk pengalaman maksimal.'),
(542,78,'_yoast_wpseo_linkdex','49'),
(543,78,'_yoast_wpseo_content_score','90'),
(544,78,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(545,78,'_yoast_wpseo_meta-robots-noindex','2'),
(546,78,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-pulsa/'),
(547,79,'_edit_last','1'),
(548,79,'_edit_lock','1737565319:1'),
(549,94,'_wp_attached_file','2025/01/Mabar-5.jpg'),
(550,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-5.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(551,94,'_wp_attachment_image_alt','Lion288 Deposit Pulsa'),
(552,79,'_thumbnail_id','94'),
(553,79,'site-sidebar-layout','default'),
(554,79,'site-content-layout','default'),
(555,79,'theme-transparent-header-meta','default'),
(556,79,'_yoast_wpseo_primary_category',''),
(557,79,'_yoast_wpseo_focuskw','Lion288 Deposit Pulsa'),
(558,79,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Menyediakan Hiburan Batas'),
(559,79,'_yoast_wpseo_metadesc','Lion288 Deposit Pulsa Situs game online yang menyediakan hiburan tanpa batas, dilengkapi sistem keamanan handal dan berbagai game menarik.'),
(560,79,'_yoast_wpseo_linkdex','49'),
(561,79,'_yoast_wpseo_content_score','90'),
(562,79,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(563,79,'_yoast_wpseo_meta-robots-noindex','2'),
(564,79,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-deposit-pulsa/'),
(565,80,'_edit_last','1'),
(566,80,'_edit_lock','1737565319:1'),
(567,96,'_wp_attached_file','2025/01/Mabar-6.jpg'),
(568,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-6.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(569,96,'_wp_attachment_image_alt','Lion288 Dana'),
(570,80,'_thumbnail_id','96'),
(571,80,'site-sidebar-layout','default'),
(572,80,'site-content-layout','default'),
(573,80,'theme-transparent-header-meta','default'),
(574,80,'_yoast_wpseo_primary_category',''),
(575,80,'_yoast_wpseo_focuskw','Lion288 Dana'),
(576,80,'_yoast_wpseo_title','%%title%% %%sep%% Bergabunglah Di Situs Game Online Populer'),
(577,80,'_yoast_wpseo_metadesc','Lion288 Dana Bergabung di situs game online paling populer, memainkan berbagai game seru dengan sistem keamanan yang terjamin.'),
(578,80,'_yoast_wpseo_linkdex','49'),
(579,80,'_yoast_wpseo_content_score','90'),
(580,80,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(581,80,'_yoast_wpseo_meta-robots-noindex','2'),
(582,80,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-dana/'),
(583,81,'_edit_last','1'),
(584,81,'_edit_lock','1737565319:1'),
(585,98,'_wp_attached_file','2025/01/Mabar-7.jpg'),
(586,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-7.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(587,98,'_wp_attachment_image_alt','Lion288 Deposit Dana'),
(588,81,'_thumbnail_id','98'),
(589,81,'site-sidebar-layout','default'),
(590,81,'site-content-layout','default'),
(591,81,'theme-transparent-header-meta','default'),
(592,81,'_yoast_wpseo_primary_category',''),
(593,81,'_yoast_wpseo_focuskw','Lion288 Deposit Dana'),
(594,81,'_yoast_wpseo_title','%%title%% %%sep%% Platform Game Sistem Keamanan Anda'),
(595,81,'_yoast_wpseo_metadesc','Lion288 Deposit Dana Platform game online dengan sistem keamanan andal, berbagai pilihan game seru, dan layanan pelanggan cepat dan handal.'),
(596,81,'_yoast_wpseo_linkdex','49'),
(597,81,'_yoast_wpseo_content_score','90'),
(598,81,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(599,81,'_yoast_wpseo_meta-robots-noindex','2'),
(600,81,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-deposit-dana/'),
(601,82,'_edit_last','1'),
(602,82,'_edit_lock','1737565319:1'),
(603,105,'_wp_attached_file','2025/01/Mabar-8.jpg'),
(604,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-8.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(605,105,'_wp_attachment_image_alt','Lion288 Demo'),
(606,82,'_thumbnail_id','105'),
(607,82,'site-sidebar-layout','default'),
(608,82,'site-content-layout','default'),
(609,82,'theme-transparent-header-meta','default'),
(610,82,'_yoast_wpseo_primary_category',''),
(611,82,'_yoast_wpseo_focuskw','Lion288 Demo'),
(612,82,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Untuk Pengalaman Gaming'),
(613,82,'_yoast_wpseo_metadesc','Lion288 Demo Situs game untuk pengalaman gaming maksimal, dilengkapi berbagai fitur canggih dan keamanan tinggi untuk kenyamanan.'),
(614,82,'_yoast_wpseo_linkdex','49'),
(615,82,'_yoast_wpseo_content_score','90'),
(616,82,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(617,82,'_yoast_wpseo_meta-robots-noindex','2'),
(618,82,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-demo/'),
(619,100,'_edit_last','1'),
(620,100,'_edit_lock','1737565319:1'),
(621,107,'_wp_attached_file','2025/01/Mabar-9.jpg'),
(622,107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2025/01/Mabar-9.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(623,107,'_wp_attachment_image_alt','Lion288 RTP'),
(624,100,'_thumbnail_id','107'),
(625,100,'site-sidebar-layout','default'),
(626,100,'site-content-layout','default'),
(627,100,'theme-transparent-header-meta','default'),
(628,100,'_yoast_wpseo_primary_category',''),
(629,100,'_yoast_wpseo_focuskw','Lion288 RTP'),
(630,100,'_yoast_wpseo_title','%%title%% %%sep%% Nikmati Hiburan Gaming Online Tanpa Batas'),
(631,100,'_yoast_wpseo_metadesc','Lion288 RTP Nikmati hiburan gaming online tanpa batas di situs terpercaya, dilengkapi berbagai game menarik dan layanan prima.'),
(632,100,'_yoast_wpseo_linkdex','49'),
(633,100,'_yoast_wpseo_content_score','90'),
(634,100,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(635,100,'_yoast_wpseo_meta-robots-noindex','2'),
(636,100,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-rtp/'),
(637,101,'_edit_last','1'),
(638,101,'_edit_lock','1737565319:1'),
(639,109,'_wp_attached_file','2025/01/Mabar-10.jpg'),
(640,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-10.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(641,109,'_wp_attachment_image_alt','Lion288 Pragmatic'),
(642,101,'_thumbnail_id','109'),
(643,101,'site-sidebar-layout','default'),
(644,101,'site-content-layout','default'),
(645,101,'theme-transparent-header-meta','default'),
(646,101,'_yoast_wpseo_primary_category',''),
(647,101,'_yoast_wpseo_focuskw','Lion288 Pragmatic'),
(648,101,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Online Dengan Layanan Premium'),
(649,101,'_yoast_wpseo_metadesc','Lion288 Pragmatic Situs game online dengan layanan premium, keamanan tinggi, dan berbagai pilihan game menarik untuk pengalaman terbaik.'),
(650,101,'_yoast_wpseo_linkdex','49'),
(651,101,'_yoast_wpseo_content_score','90'),
(652,101,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(653,101,'_yoast_wpseo_meta-robots-noindex','2'),
(654,101,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-pragmatic/'),
(655,102,'_edit_last','1'),
(656,102,'_edit_lock','1737565320:1'),
(657,111,'_wp_attached_file','2025/01/Mabar-11.jpg'),
(658,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-11.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(659,111,'_wp_attachment_image_alt','Lion288 Win'),
(660,102,'_thumbnail_id','111'),
(661,102,'site-sidebar-layout','default'),
(662,102,'site-content-layout','default'),
(663,102,'theme-transparent-header-meta','default'),
(664,102,'_yoast_wpseo_primary_category',''),
(665,102,'_yoast_wpseo_focuskw','Lion288 Win'),
(666,102,'_yoast_wpseo_title','%%title%% %%sep%% Mainkan Game Favorit Dengan Aman Nyaman'),
(667,102,'_yoast_wpseo_metadesc','Lion288 Win Mainkan game online favorit dengan aman dan nyaman di situs terpercaya, dilengkapi layanan cepat dan keamanan tinggi.'),
(668,102,'_yoast_wpseo_linkdex','49'),
(669,102,'_yoast_wpseo_content_score','90'),
(670,102,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(671,102,'_yoast_wpseo_meta-robots-noindex','2'),
(672,102,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-win/'),
(673,103,'_edit_last','1'),
(674,103,'_edit_lock','1737565320:1'),
(675,113,'_wp_attached_file','2025/01/Mabar-12.jpg'),
(676,113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-12.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(677,113,'_wp_attachment_image_alt','Lion288 4D'),
(678,103,'_thumbnail_id','113'),
(679,103,'site-sidebar-layout','default'),
(680,103,'site-content-layout','default'),
(681,103,'theme-transparent-header-meta','default'),
(682,103,'_yoast_wpseo_primary_category',''),
(683,103,'_yoast_wpseo_focuskw','Lion288 4D'),
(684,103,'_yoast_wpseo_title','%%title%% %%sep%% Situs Game Terpercaya Dengan Layanan Cepat'),
(685,103,'_yoast_wpseo_metadesc','Lion288 4D Portal game online terpercaya dengan layanan tercepat, serta berbagai pilihan game seru untuk kenyamanan bermain.'),
(686,103,'_yoast_wpseo_linkdex','49'),
(687,103,'_yoast_wpseo_content_score','90'),
(688,103,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(689,103,'_yoast_wpseo_meta-robots-noindex','2'),
(690,103,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-4d/'),
(691,104,'_edit_last','1'),
(692,104,'_edit_lock','1737565320:1'),
(693,120,'_wp_attached_file','2025/01/Mabar-13.jpg'),
(694,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-13.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(695,120,'_wp_attachment_image_alt','Lion288 Indonesia'),
(696,104,'_thumbnail_id','120'),
(697,104,'site-sidebar-layout','default'),
(698,104,'site-content-layout','default'),
(699,104,'theme-transparent-header-meta','default'),
(700,104,'_yoast_wpseo_primary_category',''),
(701,104,'_yoast_wpseo_focuskw','Lion288 Indonesia'),
(702,104,'_yoast_wpseo_title','%%title%% %%sep%% Situs Dengan Ratusan Pilihan Game Terbaik'),
(703,104,'_yoast_wpseo_metadesc','Lion288 Indonesia Situs game online dengan ratusan pilihan game seru, keamanan tinggi, serta layanan pelanggan yang cepat dan responsif.'),
(704,104,'_yoast_wpseo_linkdex','49'),
(705,104,'_yoast_wpseo_content_score','90'),
(706,104,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(707,104,'_yoast_wpseo_meta-robots-noindex','2'),
(708,104,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-indonesia/'),
(709,115,'_edit_last','1'),
(710,115,'_edit_lock','1737565320:1'),
(711,122,'_wp_attached_file','2025/01/Mabar-14.jpg'),
(712,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-14.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(713,122,'_wp_attachment_image_alt','Lion288 Asia'),
(714,115,'_thumbnail_id','122'),
(715,115,'site-sidebar-layout','default'),
(716,115,'site-content-layout','default'),
(717,115,'theme-transparent-header-meta','default'),
(718,115,'_yoast_wpseo_primary_category',''),
(719,115,'_yoast_wpseo_focuskw','Lion288 Asia'),
(720,115,'_yoast_wpseo_title','%%title%% %%sep%% Pengalaman Gaming Online Cepat Dan Aman'),
(721,115,'_yoast_wpseo_metadesc','Lion288 Asia Pengalaman gaming online yang cepat dan aman di situs terpercaya, dilengkapi berbagai pilihan game seru dan menarik.'),
(722,115,'_yoast_wpseo_linkdex','49'),
(723,115,'_yoast_wpseo_content_score','90'),
(724,115,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(725,115,'_yoast_wpseo_meta-robots-noindex','2'),
(726,115,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-asia/'),
(727,116,'_edit_last','1'),
(728,116,'_edit_lock','1737565320:1'),
(729,124,'_wp_attached_file','2025/01/Mabar-15.jpg'),
(730,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-15.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(731,124,'_wp_attachment_image_alt','Lion288 Freebet'),
(732,116,'_thumbnail_id','124'),
(733,116,'site-sidebar-layout','default'),
(734,116,'site-content-layout','default'),
(735,116,'theme-transparent-header-meta','default'),
(736,116,'_yoast_wpseo_primary_category',''),
(737,116,'_yoast_wpseo_focuskw','Lion288 Freebet'),
(738,116,'_yoast_wpseo_title','%%title%% %%sep%% Platform Game Dengan Jaminan Kenyamanan'),
(739,116,'_yoast_wpseo_metadesc','Lion288 Freebet Platform game online dengan jaminan kenyamanan, keamanan tinggi, dan berbagai game untuk pengalaman bermain maksimal.'),
(740,116,'_yoast_wpseo_linkdex','49'),
(741,116,'_yoast_wpseo_content_score','90'),
(742,116,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(743,116,'_yoast_wpseo_meta-robots-noindex','2'),
(744,116,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-freebet/'),
(745,117,'_edit_last','1'),
(746,117,'_edit_lock','1737565321:1'),
(747,126,'_wp_attached_file','2025/01/Mabar-16.jpg'),
(748,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-16.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(749,126,'_wp_attachment_image_alt','Lion288 Maxwin'),
(750,117,'_thumbnail_id','126'),
(751,117,'site-sidebar-layout','default'),
(752,117,'site-content-layout','default'),
(753,117,'theme-transparent-header-meta','default'),
(754,117,'_yoast_wpseo_primary_category',''),
(755,117,'_yoast_wpseo_focuskw','Lion288 Maxwin'),
(756,117,'_yoast_wpseo_title','%%title%% %%sep%% Situs Online Yang Mudah akses Dan Aman'),
(757,117,'_yoast_wpseo_metadesc','Lion288 Maxwin Situs game online mudah diakses dan aman, dilengkapi berbagai pilihan game seru serta layanan pelanggan yang handal.'),
(758,117,'_yoast_wpseo_linkdex','49'),
(759,117,'_yoast_wpseo_content_score','90'),
(760,117,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(761,117,'_yoast_wpseo_meta-robots-noindex','2'),
(762,117,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-maxwin/'),
(763,118,'_edit_last','1'),
(764,118,'_edit_lock','1737565321:1'),
(765,128,'_wp_attached_file','2025/01/Mabar-17.jpg'),
(766,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-17.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(767,128,'_wp_attachment_image_alt','Lion288 Mobile'),
(768,118,'_thumbnail_id','128'),
(769,118,'site-sidebar-layout','default'),
(770,118,'site-content-layout','default'),
(771,118,'theme-transparent-header-meta','default'),
(772,118,'_yoast_wpseo_primary_category',''),
(773,118,'_yoast_wpseo_focuskw','Lion288 Mobile'),
(774,118,'_yoast_wpseo_title','%%title%% %%sep%% Mainkan Game Favorit Di Situs Terpercaya'),
(775,118,'_yoast_wpseo_metadesc','Lion288 Mobile Mainkan game online favorit di situs terpercaya, dengan keamanan terjamin dan layanan cepat untuk kenyamanan bermain.'),
(776,118,'_yoast_wpseo_linkdex','49'),
(777,118,'_yoast_wpseo_content_score','90'),
(778,118,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(779,118,'_yoast_wpseo_meta-robots-noindex','2'),
(780,118,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-mobile/'),
(781,119,'_edit_last','1'),
(782,119,'_edit_lock','1737565321:1'),
(783,130,'_wp_attached_file','2025/01/Mabar-18.jpg'),
(784,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:20:\"2025/01/Mabar-18.jpg\";s:8:\"filesize\";i:7074;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Mabar-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}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:{}}}'),
(785,130,'_wp_attachment_image_alt','Lion288 Apk Mobile'),
(786,119,'_thumbnail_id','130'),
(787,119,'site-sidebar-layout','default'),
(788,119,'site-content-layout','default'),
(789,119,'theme-transparent-header-meta','default'),
(790,119,'_yoast_wpseo_primary_category',''),
(791,119,'_yoast_wpseo_focuskw','Lion288 Apk Mobile'),
(792,119,'_yoast_wpseo_title','%%title%% %%sep%% Portal Game Online Dengan Teknologi Terbaik'),
(793,119,'_yoast_wpseo_metadesc','ALion288 Apk Mobile Portal game online dengan teknologi terbaik, menghadirkan berbagai pilihan game menarik serta keamanan yang handal.'),
(794,119,'_yoast_wpseo_linkdex','44'),
(795,119,'_yoast_wpseo_content_score','90'),
(796,119,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(797,119,'_yoast_wpseo_meta-robots-noindex','2'),
(798,119,'_yoast_wpseo_canonical','https://lion288slot.com/lion288-apk-mobile/'),
(799,67,'_wp_old_date','2025-01-22'),
(804,69,'_wp_old_date','2025-01-22'),
(805,70,'_wp_old_date','2025-01-22'),
(807,133,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(809,72,'_wp_old_date','2025-01-22'),
(811,67,'_wp_old_date','2025-01-29'),
(814,69,'_wp_old_date','2025-01-29'),
(816,70,'_wp_old_date','2025-01-29'),
(818,133,'_wp_old_date','2025-01-29'),
(820,72,'_wp_old_date','2025-01-29'),
(822,67,'_wp_old_date','2025-02-05'),
(826,69,'_wp_old_date','2025-02-05'),
(827,70,'_wp_old_date','2025-02-05'),
(828,133,'_wp_old_date','2025-02-05'),
(829,72,'_wp_old_date','2025-02-05'),
(831,67,'_wp_old_date','2025-02-12'),
(835,69,'_wp_old_date','2025-02-12'),
(837,70,'_wp_old_date','2025-02-12'),
(839,133,'_wp_old_date','2025-02-12'),
(841,72,'_wp_old_date','2025-02-12'),
(843,67,'_wp_old_date','2025-02-19'),
(845,69,'_wp_old_date','2025-02-19'),
(846,70,'_wp_old_date','2025-02-19'),
(847,133,'_wp_old_date','2025-02-19'),
(848,72,'_wp_old_date','2025-02-19'),
(850,67,'_wp_old_date','2025-02-26'),
(852,69,'_wp_old_date','2025-02-26'),
(853,70,'_wp_old_date','2025-02-26'),
(854,133,'_wp_old_date','2025-02-26'),
(855,72,'_wp_old_date','2025-02-26'),
(856,67,'_wp_old_date','2025-03-05'),
(859,69,'_wp_old_date','2025-03-05'),
(861,70,'_wp_old_date','2025-03-05'),
(863,133,'_wp_old_date','2025-03-05'),
(865,72,'_wp_old_date','2025-03-05'),
(868,67,'_wp_old_date','2025-03-12'),
(870,69,'_wp_old_date','2025-03-12'),
(871,70,'_wp_old_date','2025-03-12'),
(872,133,'_wp_old_date','2025-03-12'),
(873,72,'_wp_old_date','2025-03-12'),
(874,67,'_wp_old_date','2025-03-19'),
(876,69,'_wp_old_date','2025-03-19'),
(877,70,'_wp_old_date','2025-03-19'),
(878,133,'_wp_old_date','2025-03-19'),
(879,72,'_wp_old_date','2025-03-19'),
(880,67,'_wp_old_date','2025-03-26'),
(882,69,'_wp_old_date','2025-03-26'),
(883,70,'_wp_old_date','2025-03-26'),
(884,133,'_wp_old_date','2025-03-26'),
(885,72,'_wp_old_date','2025-03-26'),
(887,67,'_wp_old_date','2025-03-27'),
(889,69,'_wp_old_date','2025-03-27'),
(890,70,'_wp_old_date','2025-03-27'),
(891,133,'_wp_old_date','2025-03-27'),
(892,72,'_wp_old_date','2025-03-27'),
(893,67,'_wp_old_date','2025-04-02'),
(895,69,'_wp_old_date','2025-04-02'),
(896,70,'_wp_old_date','2025-04-02'),
(897,133,'_wp_old_date','2025-04-02'),
(898,72,'_wp_old_date','2025-04-02'),
(899,67,'_wp_old_date','2025-04-03'),
(901,69,'_wp_old_date','2025-04-03'),
(902,70,'_wp_old_date','2025-04-03'),
(903,133,'_wp_old_date','2025-04-03'),
(904,72,'_wp_old_date','2025-04-03'),
(906,67,'_wp_old_date','2025-04-09'),
(908,69,'_wp_old_date','2025-04-09'),
(909,70,'_wp_old_date','2025-04-09'),
(910,133,'_wp_old_date','2025-04-09'),
(911,72,'_wp_old_date','2025-04-09'),
(912,67,'_wp_old_date','2025-04-16'),
(913,69,'_wp_old_date','2025-04-16'),
(914,70,'_wp_old_date','2025-04-16'),
(915,133,'_wp_old_date','2025-04-16'),
(916,72,'_wp_old_date','2025-04-16'),
(918,67,'_wp_old_date','2025-04-23'),
(921,69,'_wp_old_date','2025-04-23'),
(922,70,'_wp_old_date','2025-04-23'),
(923,133,'_wp_old_date','2025-04-23'),
(924,72,'_wp_old_date','2025-04-23'),
(925,67,'_wp_old_date','2025-04-25'),
(927,69,'_wp_old_date','2025-04-25'),
(928,70,'_wp_old_date','2025-04-25'),
(929,133,'_wp_old_date','2025-04-25'),
(930,72,'_wp_old_date','2025-04-25'),
(931,67,'_wp_old_date','2025-04-30'),
(935,69,'_wp_old_date','2025-04-30'),
(937,70,'_wp_old_date','2025-04-30'),
(939,133,'_wp_old_date','2025-04-30'),
(941,72,'_wp_old_date','2025-04-30'),
(944,67,'_wp_old_date','2025-05-07'),
(946,69,'_wp_old_date','2025-05-07'),
(947,70,'_wp_old_date','2025-05-07'),
(948,133,'_wp_old_date','2025-05-07'),
(949,72,'_wp_old_date','2025-05-07'),
(950,67,'_wp_old_date','2025-05-14'),
(954,69,'_wp_old_date','2025-05-14'),
(956,70,'_wp_old_date','2025-05-14'),
(958,133,'_wp_old_date','2025-05-14'),
(960,72,'_wp_old_date','2025-05-14'),
(963,67,'_wp_old_date','2025-05-21'),
(967,69,'_wp_old_date','2025-05-21'),
(968,70,'_wp_old_date','2025-05-21'),
(969,133,'_wp_old_date','2025-05-21'),
(970,72,'_wp_old_date','2025-05-21'),
(971,67,'_wp_old_date','2025-05-28'),
(974,69,'_wp_old_date','2025-05-28'),
(975,70,'_wp_old_date','2025-05-28'),
(976,133,'_wp_old_date','2025-05-28'),
(977,72,'_wp_old_date','2025-05-28'),
(979,67,'_wp_old_date','2025-06-04'),
(983,69,'_wp_old_date','2025-06-04'),
(984,70,'_wp_old_date','2025-06-04'),
(985,133,'_wp_old_date','2025-06-04'),
(986,72,'_wp_old_date','2025-06-04'),
(987,67,'_wp_old_date','2025-06-11'),
(991,69,'_wp_old_date','2025-06-11'),
(993,70,'_wp_old_date','2025-06-11'),
(995,133,'_wp_old_date','2025-06-11'),
(997,72,'_wp_old_date','2025-06-11'),
(999,67,'_wp_old_date','2025-06-18'),
(1001,69,'_wp_old_date','2025-06-18'),
(1002,70,'_wp_old_date','2025-06-18'),
(1003,133,'_wp_old_date','2025-06-18'),
(1004,72,'_wp_old_date','2025-06-18'),
(1006,67,'_wp_old_date','2025-06-19'),
(1011,69,'_wp_old_date','2025-06-19'),
(1013,70,'_wp_old_date','2025-06-19'),
(1015,133,'_wp_old_date','2025-06-19'),
(1017,72,'_wp_old_date','2025-06-19'),
(1019,67,'_wp_old_date','2025-06-26'),
(1023,69,'_wp_old_date','2025-06-26'),
(1024,70,'_wp_old_date','2025-06-26'),
(1025,133,'_wp_old_date','2025-06-26'),
(1026,72,'_wp_old_date','2025-06-26'),
(1028,67,'_wp_old_date','2025-07-02'),
(1033,69,'_wp_old_date','2025-07-02'),
(1035,70,'_wp_old_date','2025-07-02'),
(1036,133,'_wp_old_date','2025-07-02'),
(1037,72,'_wp_old_date','2025-07-02'),
(1038,67,'_wp_old_date','2025-07-09'),
(1040,69,'_wp_old_date','2025-07-09'),
(1041,70,'_wp_old_date','2025-07-09'),
(1042,133,'_wp_old_date','2025-07-09'),
(1043,72,'_wp_old_date','2025-07-09'),
(1045,67,'_wp_old_date','2025-07-16'),
(1049,69,'_wp_old_date','2025-07-16'),
(1050,70,'_wp_old_date','2025-07-16'),
(1051,133,'_wp_old_date','2025-07-16'),
(1052,72,'_wp_old_date','2025-07-16'),
(1053,67,'_wp_old_date','2025-07-20'),
(1055,69,'_wp_old_date','2025-07-20'),
(1056,70,'_wp_old_date','2025-07-20'),
(1057,133,'_wp_old_date','2025-07-20'),
(1058,72,'_wp_old_date','2025-07-20'),
(1059,67,'_wp_old_date','2025-07-25'),
(1061,69,'_wp_old_date','2025-07-25'),
(1062,70,'_wp_old_date','2025-07-25'),
(1063,133,'_wp_old_date','2025-07-25'),
(1064,72,'_wp_old_date','2025-07-25'),
(1065,67,'_wp_old_date','2025-07-30'),
(1067,69,'_wp_old_date','2025-07-30'),
(1068,70,'_wp_old_date','2025-07-30'),
(1069,133,'_wp_old_date','2025-07-30'),
(1070,72,'_wp_old_date','2025-07-30'),
(1073,67,'_wp_old_date','2025-07-31'),
(1077,69,'_wp_old_date','2025-07-31'),
(1079,70,'_wp_old_date','2025-07-31'),
(1081,133,'_wp_old_date','2025-07-31'),
(1083,72,'_wp_old_date','2025-07-31'),
(1085,67,'_wp_old_date','2025-08-07'),
(1087,69,'_wp_old_date','2025-08-07'),
(1088,70,'_wp_old_date','2025-08-07'),
(1089,133,'_wp_old_date','2025-08-07'),
(1090,72,'_wp_old_date','2025-08-07'),
(1092,67,'_wp_old_date','2025-08-13'),
(1097,69,'_wp_old_date','2025-08-13'),
(1099,70,'_wp_old_date','2025-08-13'),
(1101,133,'_wp_old_date','2025-08-13'),
(1103,72,'_wp_old_date','2025-08-13'),
(1105,161,'_edit_last','1'),
(1106,161,'_edit_lock','1755807262:1'),
(1107,162,'_wp_attached_file','2025/08/Mabar88.jpg'),
(1108,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:19:\"2025/08/Mabar88.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Mabar88-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Mabar88-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1109,162,'_wp_attachment_image_alt','Lion 288'),
(1110,161,'_thumbnail_id','162'),
(1112,161,'site-sidebar-layout','default'),
(1113,161,'site-content-layout','default'),
(1114,161,'theme-transparent-header-meta','default'),
(1115,161,'_yoast_wpseo_primary_category',''),
(1116,161,'_yoast_wpseo_focuskw','Lion 288'),
(1117,161,'_yoast_wpseo_title','%%title%% %%sep%% Lucky Games, Hadiah Dan Kemenangan Besar'),
(1118,161,'_yoast_wpseo_metadesc','Lion 288 nikmati sensasi tanpa batas bermain game yang penuh keberuntungan ini, dengan peluang mendapatkan hadiah-hadiah menakjubkan.'),
(1119,161,'_yoast_wpseo_linkdex','60'),
(1120,161,'_yoast_wpseo_content_score','90'),
(1121,161,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1122,161,'_yoast_wpseo_meta-robots-noindex','2'),
(1123,161,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288/'),
(1124,156,'_edit_last','1'),
(1125,156,'_edit_lock','1755807274:1'),
(1126,164,'_wp_attached_file','2025/08/Mabar88-1.jpg'),
(1127,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2025/08/Mabar88-1.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Mabar88-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Mabar88-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1128,164,'_wp_attachment_image_alt','Lion 288 Daftar'),
(1129,156,'_thumbnail_id','164'),
(1131,156,'site-sidebar-layout','default'),
(1132,156,'site-content-layout','default'),
(1133,156,'theme-transparent-header-meta','default'),
(1134,156,'_yoast_wpseo_primary_category',''),
(1135,156,'_yoast_wpseo_focuskw','Lion 288 Daftar'),
(1136,156,'_yoast_wpseo_title','%%title%% %%sep%% Mainkan Game Online Dengan Hadiah Fantastis'),
(1137,156,'_yoast_wpseo_metadesc','Lion 288 Daftar mainkan game online dengan hadiah fantastis dan rasakan sensasi luar biasa dalam setiap klik, tanpa perlu modal besar.'),
(1138,156,'_yoast_wpseo_linkdex','60'),
(1139,156,'_yoast_wpseo_content_score','90'),
(1140,156,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1141,156,'_yoast_wpseo_meta-robots-noindex','2'),
(1142,156,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288-daftar/'),
(1143,157,'_edit_last','1'),
(1144,157,'_edit_lock','1755807279:1'),
(1145,166,'_wp_attached_file','2025/08/Mabar88-2.jpg'),
(1146,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2025/08/Mabar88-2.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Mabar88-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Mabar88-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1147,166,'_wp_attachment_image_alt','Lion 288 Register'),
(1148,157,'_thumbnail_id','166'),
(1150,157,'site-sidebar-layout','default'),
(1151,157,'site-content-layout','default'),
(1152,157,'theme-transparent-header-meta','default'),
(1153,157,'_yoast_wpseo_primary_category',''),
(1154,157,'_yoast_wpseo_focuskw','Lion 288 Register'),
(1155,157,'_yoast_wpseo_title','%%title%% %%sep%% Bergabunglah Dalam Situs Game Greatest'),
(1156,157,'_yoast_wpseo_metadesc','Lion 288 Register bergabunglah dalam petualangan yang menantang, dengan komunitas yang ramah, dan bermain game yang menakjubkan hari ini.'),
(1157,157,'_yoast_wpseo_linkdex','60'),
(1158,157,'_yoast_wpseo_content_score','90'),
(1159,157,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1160,157,'_yoast_wpseo_meta-robots-noindex','2'),
(1161,157,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288-register/'),
(1162,158,'_edit_last','1'),
(1163,158,'_edit_lock','1755807285:1'),
(1164,168,'_wp_attached_file','2025/08/Mabar88-3.jpg'),
(1165,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2025/08/Mabar88-3.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Mabar88-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Mabar88-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1166,168,'_wp_attachment_image_alt','Lion 288 Login'),
(1167,158,'_thumbnail_id','168'),
(1169,158,'site-sidebar-layout','default'),
(1170,158,'site-content-layout','default'),
(1171,158,'theme-transparent-header-meta','default'),
(1172,158,'_yoast_wpseo_primary_category',''),
(1173,158,'_yoast_wpseo_focuskw','Lion 288 Login'),
(1174,158,'_yoast_wpseo_title','%%title%% %%sep%% Arena Keterampilan, Ayo Menangkan Hadiahnya'),
(1175,158,'_yoast_wpseo_metadesc','Lion 288 Login bersiaplah untuk meraih hadiah-hadiah menggiurkan saat Anda bersaing dalam beragam permainan yang mengasah keterampilan Anda.'),
(1176,158,'_yoast_wpseo_linkdex','60'),
(1177,158,'_yoast_wpseo_content_score','90'),
(1178,158,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1179,158,'_yoast_wpseo_meta-robots-noindex','2'),
(1180,158,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288-login/'),
(1181,159,'_edit_last','1'),
(1182,159,'_edit_lock','1755807292:1'),
(1183,170,'_wp_attached_file','2025/08/Mabar88-4.jpg'),
(1184,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2025/08/Mabar88-4.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Mabar88-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Mabar88-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1185,170,'_wp_attachment_image_alt','Lion 288 Download'),
(1186,159,'_thumbnail_id','170'),
(1188,159,'site-sidebar-layout','default'),
(1189,159,'site-content-layout','default'),
(1190,159,'theme-transparent-header-meta','default'),
(1191,159,'_yoast_wpseo_primary_category',''),
(1192,159,'_yoast_wpseo_focuskw','Lion 288 Download'),
(1193,159,'_yoast_wpseo_title','%%title%% %%sep%% Game Legendaris, Hadiah Besar Menunggumu'),
(1194,159,'_yoast_wpseo_metadesc','Lion 288 Download mainkan permainan yang menggetarkan hatimu, uji keterampilanmu, dan rebut kemenangan besar yang akan mengubah hidupmu.'),
(1195,159,'_yoast_wpseo_linkdex','60'),
(1196,159,'_yoast_wpseo_content_score','90'),
(1197,159,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1198,159,'_yoast_wpseo_meta-robots-noindex','2'),
(1199,159,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288-download/'),
(1200,160,'_edit_last','1'),
(1201,160,'_edit_lock','1755807245:1'),
(1202,172,'_wp_attached_file','2025/08/Mabar88-5.jpg'),
(1203,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2025/08/Mabar88-5.jpg\";s:8:\"filesize\";i:35054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Mabar88-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Mabar88-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5573;}}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:{}}}'),
(1204,172,'_wp_attachment_image_alt','Lion 288 Online'),
(1205,160,'_thumbnail_id','172'),
(1206,160,'site-sidebar-layout','default'),
(1207,160,'site-content-layout','default'),
(1208,160,'theme-transparent-header-meta','default'),
(1209,160,'_yoast_wpseo_primary_category',''),
(1210,160,'_yoast_wpseo_focuskw','Lion 288 Online'),
(1211,160,'_yoast_wpseo_title','%%title%% %%sep%% Seru Bermain Online, Kejar Hadiahnya Sekarang!'),
(1212,160,'_yoast_wpseo_metadesc','Lion 288 Online rasakan sensasi tak terlupakan dalam setiap permainan yang kami tawarkan, sambil meriah hadiah menarik yang selalu tersedia.'),
(1213,160,'_yoast_wpseo_linkdex','60'),
(1214,160,'_yoast_wpseo_content_score','90'),
(1215,160,'_yoast_wpseo_estimated-reading-time-minutes','1'),
(1216,160,'_yoast_wpseo_meta-robots-noindex','2'),
(1217,160,'_yoast_wpseo_canonical','https://lion288slot.com/lion-288-online/'),
(1219,67,'_wp_old_date','2025-08-20'),
(1223,69,'_wp_old_date','2025-08-20'),
(1224,70,'_wp_old_date','2025-08-20'),
(1225,133,'_wp_old_date','2025-08-20'),
(1226,72,'_wp_old_date','2025-08-20'),
(1227,67,'_wp_old_date','2025-08-27'),
(1229,69,'_wp_old_date','2025-08-27'),
(1230,70,'_wp_old_date','2025-08-27'),
(1231,133,'_wp_old_date','2025-08-27'),
(1232,72,'_wp_old_date','2025-08-27'),
(1233,67,'_wp_old_date','2025-08-29'),
(1237,69,'_wp_old_date','2025-08-29'),
(1239,70,'_wp_old_date','2025-08-29'),
(1241,133,'_wp_old_date','2025-08-29'),
(1243,72,'_wp_old_date','2025-08-29'),
(1245,67,'_wp_old_date','2025-09-05'),
(1247,69,'_wp_old_date','2025-09-05'),
(1248,70,'_wp_old_date','2025-09-05'),
(1249,133,'_wp_old_date','2025-09-05'),
(1250,72,'_wp_old_date','2025-09-05'),
(1251,67,'_wp_old_date','2025-09-10'),
(1253,69,'_wp_old_date','2025-09-10'),
(1254,70,'_wp_old_date','2025-09-10'),
(1255,133,'_wp_old_date','2025-09-10'),
(1256,72,'_wp_old_date','2025-09-10'),
(1258,67,'_wp_old_date','2025-09-11'),
(1260,69,'_wp_old_date','2025-09-11'),
(1261,70,'_wp_old_date','2025-09-11'),
(1262,133,'_wp_old_date','2025-09-11'),
(1263,72,'_wp_old_date','2025-09-11'),
(1264,67,'_wp_old_date','2025-09-12'),
(1265,67,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.0035419464111328125,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.13623690605163574,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6054,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.001157999038696289,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":false,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":false,\"p\":false,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":false,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[false,{\".entry-content h2\":false,\"h2\":false},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":false,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[false,{\"ol\":false},[\"list-style:decimal\"]],[true,{\"li>ol\":false,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[false,{\"p\":false},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47984,\"final_size\":2404,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"6259912a70dafc4e2779e0ccd1d6ad3a\",\"parse_time\":0.06859898567199707,\"shake_time\":0.0007960796356201172,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\"h2\":false,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":false,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-theme-transparent-header #primary\":false,\".ast-theme-transparent-header #secondary\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[false,{\"h2\":false,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[false,{\"h2\":false,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":false},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":false,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7716,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0014600753784179688,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":false,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.00011396408081054688,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0004949569702148438,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16608,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.00040411949157714844,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[false,{\"h2\":false},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\"strong\":true},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":false},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[false,{\".article ol li\":false},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"h1\",\"attributes\":{\"data-amp-original-style\":\"text-align: center;\",\"class\":\"amp-wp-cdd8ca0\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":20,\"post_type\":\"page\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"85d18e82f0c75e878418ae415714507c\",\"parse_time\":0.00023293495178222656,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-cdd8ca0:not(#_#_#_#_#_)\":true},[\"text-align:center\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":67,\"final_size\":63,\"element\":{\"name\":\"div\",\"attributes\":{\"data-amp-original-style\":\"position: absolute; left: -9966px;\",\"class\":\"amp-wp-e64351f\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":20,\"post_type\":\"page\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"09c39821732b038f09efa2703970f45a\",\"parse_time\":0.010957002639770508,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-e64351f:not(#_#_#_#_#_)\":true},[\"position:absolute\",\"left:-9966px\"]]],\"included\":true}]'),
(1268,69,'_wp_old_date','2025-09-12'),
(1269,69,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.0043430328369140625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.13128995895385742,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6122,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.0011031627655029297,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":true,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":true,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[true,{\"ol\":true},[\"list-style:decimal\"]],[true,{\"li>ol\":true,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":49393,\"final_size\":2482,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"9a54c20a107e812616f09a4e470e4330\",\"parse_time\":0.09262895584106445,\"shake_time\":0.0007569789886474609,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":true},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,{\".ast-pagination .next.page-numbers\":false},[\"display:inherit\",\"float:none\"]],[false,{\".ast-pagination a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-pagination a:hover\":false,\".ast-pagination a:focus\":false,\".ast-pagination > span:hover:not(.dots)\":false,\".ast-pagination > span.current\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination\":false},[\"display:inline-block\",\"width:100%\",\"padding-top:2em\",\"text-align:center\"]],[false,{\".ast-pagination .page-numbers\":false},[\"display:inline-block\",\"width:2.33333em\",\"height:2.33333em\",\"font-size:16px\",\"font-size:1.06666rem\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination .nav-links\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"@media (max-width: 420px){\"],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"width:100%\",\"text-align:center\",\"margin:0\"]],[false,{\".ast-pagination-circle .ast-pagination .next.page-numbers\":false,\".ast-pagination-square .ast-pagination .next.page-numbers\":false},[\"margin-top:10px\"]],[false,{\".ast-pagination-circle .ast-pagination .prev.page-numbers\":false,\".ast-pagination-square .ast-pagination .prev.page-numbers\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ast-pagination .prev\":false,\".ast-pagination .prev:visited\":false,\".ast-pagination .prev:focus\":false,\".ast-pagination .next\":false,\".ast-pagination .next:visited\":false,\".ast-pagination .next:focus\":false},[\"display:inline-block\",\"width:auto\"]],[false,{\".ast-page-builder-template .ast-pagination\":false},[\"padding:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-pagination\":false},[\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"}\"],[false,{\".ast-pagination .prev.page-numbers\":false},[\"float:left\"]],[false,{\".ast-pagination .next.page-numbers\":false},[\"float:right\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ast-pagination .next.page-numbers .page-navigation\":false},[\"padding-right:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7719,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0013539791107177734,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":true,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.0001480579376220703,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0004360675811767578,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16645,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.00036215782165527344,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":true},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[true,{\".article ol li\":true},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true}]'),
(1270,70,'_wp_old_date','2025-09-12');
INSERT INTO `wp_postmeta` VALUES
(1271,70,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.004065036773681641,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.13177800178527832,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6122,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.0011570453643798828,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":true,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":true,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[true,{\"ol\":true},[\"list-style:decimal\"]],[true,{\"li>ol\":true,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":49536,\"final_size\":2482,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (min-width:921px){.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}.ast-author-box{-js-display:flex;display:flex;}.ast-author-bio{flex:1;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (min-width:921px){.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}.ast-author-box{-js-display:flex;display:flex;}.ast-author-bio{flex:1;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"0e3b6aa23df63d97d369009e1b0ae771\",\"parse_time\":0.10044717788696289,\"shake_time\":0.0007998943328857422,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,{\".ast-author-box\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-author-bio\":false},[\"flex:1\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":true},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,{\".ast-pagination .next.page-numbers\":false},[\"display:inherit\",\"float:none\"]],[false,{\".ast-pagination a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-pagination a:hover\":false,\".ast-pagination a:focus\":false,\".ast-pagination > span:hover:not(.dots)\":false,\".ast-pagination > span.current\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination\":false},[\"display:inline-block\",\"width:100%\",\"padding-top:2em\",\"text-align:center\"]],[false,{\".ast-pagination .page-numbers\":false},[\"display:inline-block\",\"width:2.33333em\",\"height:2.33333em\",\"font-size:16px\",\"font-size:1.06666rem\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination .nav-links\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"@media (max-width: 420px){\"],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"width:100%\",\"text-align:center\",\"margin:0\"]],[false,{\".ast-pagination-circle .ast-pagination .next.page-numbers\":false,\".ast-pagination-square .ast-pagination .next.page-numbers\":false},[\"margin-top:10px\"]],[false,{\".ast-pagination-circle .ast-pagination .prev.page-numbers\":false,\".ast-pagination-square .ast-pagination .prev.page-numbers\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ast-pagination .prev\":false,\".ast-pagination .prev:visited\":false,\".ast-pagination .prev:focus\":false,\".ast-pagination .next\":false,\".ast-pagination .next:visited\":false,\".ast-pagination .next:focus\":false},[\"display:inline-block\",\"width:auto\"]],[false,{\".ast-page-builder-template .ast-pagination\":false},[\"padding:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-pagination\":false},[\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"}\"],[false,{\".ast-pagination .prev.page-numbers\":false},[\"float:left\"]],[false,{\".ast-pagination .next.page-numbers\":false},[\"float:right\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ast-pagination .next.page-numbers .page-navigation\":false},[\"padding-right:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7719,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.001486063003540039,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":true,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.0001239776611328125,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0004379749298095703,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16645,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.00045800209045410156,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":true},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[true,{\".article ol li\":true},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true}]'),
(1272,133,'_wp_old_date','2025-09-12'),
(1273,133,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.004153013229370117,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.14554500579833984,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6122,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.00115203857421875,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":true,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":true,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[true,{\"ol\":true},[\"list-style:decimal\"]],[true,{\"li>ol\":true,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":49393,\"final_size\":2482,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.ast-pagination .next.page-numbers{display:inherit;float:none;}.ast-pagination a{color:var(--ast-global-color-0);}.ast-pagination a:hover, .ast-pagination a:focus, .ast-pagination > span:hover:not(.dots), .ast-pagination > span.current{color:var(--ast-global-color-1);}.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {padding: 0 1.5em;height: 2.33333em;line-height: calc(2.33333em - 3px);}.ast-pagination {display: inline-block;width: 100%;padding-top: 2em;text-align: center;}.ast-pagination .page-numbers {display: inline-block;width: 2.33333em;height: 2.33333em;font-size: 16px;font-size: 1.06666rem;line-height: calc(2.33333em - 3px);}.ast-pagination .nav-links {display: inline-block;width: 100%;}@media (max-width: 420px) {.ast-pagination .prev.page-numbers,.ast-pagination .next.page-numbers {width: 100%;text-align: center;margin: 0;}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-square .ast-pagination .next.page-numbers{margin-top: 10px;}.ast-pagination-circle .ast-pagination .prev.page-numbers,.ast-pagination-square .ast-pagination .prev.page-numbers{margin-bottom: 10px;}}.ast-pagination .prev,.ast-pagination .prev:visited,.ast-pagination .prev:focus,.ast-pagination .next,.ast-pagination .next:visited,.ast-pagination .next:focus {display: inline-block;width: auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}@media (min-width: 993px) {.ast-pagination {padding-left: 3.33333em;padding-right: 3.33333em;}}.ast-pagination .prev.page-numbers {float: left;}.ast-pagination .next.page-numbers {float: right;}@media (max-width: 768px) {.ast-pagination .next.page-numbers .page-navigation {padding-right: 0;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"9a54c20a107e812616f09a4e470e4330\",\"parse_time\":0.09262895584106445,\"shake_time\":0.0007300376892089844,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":true},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,{\".ast-pagination .next.page-numbers\":false},[\"display:inherit\",\"float:none\"]],[false,{\".ast-pagination a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-pagination a:hover\":false,\".ast-pagination a:focus\":false,\".ast-pagination > span:hover:not(.dots)\":false,\".ast-pagination > span.current\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination\":false},[\"display:inline-block\",\"width:100%\",\"padding-top:2em\",\"text-align:center\"]],[false,{\".ast-pagination .page-numbers\":false},[\"display:inline-block\",\"width:2.33333em\",\"height:2.33333em\",\"font-size:16px\",\"font-size:1.06666rem\",\"line-height:calc(2.33333em - 3px)\"]],[false,{\".ast-pagination .nav-links\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"@media (max-width: 420px){\"],[false,{\".ast-pagination .prev.page-numbers\":false,\".ast-pagination .next.page-numbers\":false},[\"width:100%\",\"text-align:center\",\"margin:0\"]],[false,{\".ast-pagination-circle .ast-pagination .next.page-numbers\":false,\".ast-pagination-square .ast-pagination .next.page-numbers\":false},[\"margin-top:10px\"]],[false,{\".ast-pagination-circle .ast-pagination .prev.page-numbers\":false,\".ast-pagination-square .ast-pagination .prev.page-numbers\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ast-pagination .prev\":false,\".ast-pagination .prev:visited\":false,\".ast-pagination .prev:focus\":false,\".ast-pagination .next\":false,\".ast-pagination .next:visited\":false,\".ast-pagination .next:focus\":false},[\"display:inline-block\",\"width:auto\"]],[false,{\".ast-page-builder-template .ast-pagination\":false},[\"padding:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-pagination\":false},[\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"}\"],[false,{\".ast-pagination .prev.page-numbers\":false},[\"float:left\"]],[false,{\".ast-pagination .next.page-numbers\":false},[\"float:right\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ast-pagination .next.page-numbers .page-navigation\":false},[\"padding-right:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7719,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0013899803161621094,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":true,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.00011110305786132812,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0004229545593261719,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16645,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.00038909912109375,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":true},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[true,{\".article ol li\":true},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true}]'),
(1274,72,'_wp_old_date','2025-09-12');
INSERT INTO `wp_postmeta` VALUES
(1275,72,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.0068471431732177734,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.1232600212097168,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6143,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.0010371208190917969,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":false,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[true,{\".entry-content h3\":false,\"h3\":true},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":false,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[false,{\"ol\":false},[\"list-style:decimal\"]],[true,{\"li>ol\":false,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47710,\"final_size\":2568,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"872122ab820623adcc8e8a071c59baca\",\"parse_time\":0.08936309814453125,\"shake_time\":0.0006830692291259766,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":true,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":false},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":true,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7716,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0014069080352783203,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":false,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.00011014938354492188,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.00046706199645996094,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16629,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.0004038810729980469,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[true,{\"h3\":true},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":false},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[false,{\".article ol li\":false},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":136,\"final_size\":129,\"element\":{\"name\":\"div\",\"attributes\":{\"id\":\"toc\",\"data-amp-original-style\":\"background: #f9f9f9;border: 1px solid #aaa;display: table;margin-bottom: 1em;padding: 1em;width: 350px;\",\"class\":\"amp-wp-22abcbf\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":264,\"post_type\":\"post\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"4cf7b75a293c632457bc6362b882fa3a\",\"parse_time\":0.006494045257568359,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-22abcbf:not(#_#_#_#_#_)\":true},[\"background:#f9f9f9\",\"border:1px solid #aaa\",\"display:table\",\"margin-bottom:1em\",\"padding:1em\",\"width:350px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":69,\"final_size\":66,\"element\":{\"name\":\"p\",\"attributes\":{\"class\":\"toctitle amp-wp-1f3bc52\",\"data-amp-original-style\":\"font-weight: 700;text-align: center;\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":264,\"post_type\":\"post\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"c5f795cff0d9e6edca50bc536c81b6ed\",\"parse_time\":0.015804052352905273,\"shake_time\":3.814697265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-1f3bc52:not(#_#_#_#_#_)\":true},[\"font-weight:700\",\"text-align:center\"]]],\"included\":true}]'),
(1276,67,'_wp_old_date','2025-09-19'),
(1278,69,'_wp_old_date','2025-09-19'),
(1279,70,'_wp_old_date','2025-09-19'),
(1280,133,'_wp_old_date','2025-09-19'),
(1281,72,'_wp_old_date','2025-09-19'),
(1284,179,'_wp_old_date','2025-09-29'),
(1295,187,'_wp_old_date','2025-10-01'),
(1298,67,'_wp_old_date','2025-09-24'),
(1302,69,'_wp_old_date','2025-09-24'),
(1303,70,'_wp_old_date','2025-09-24'),
(1304,133,'_wp_old_date','2025-09-24'),
(1305,72,'_wp_old_date','2025-09-25'),
(1307,191,'_wp_old_date','2025-10-02'),
(1309,193,'_wp_trash_meta_status','publish'),
(1310,193,'_wp_trash_meta_time','1759412603'),
(1311,193,'_wp_desired_post_slug','test-post-title'),
(1313,195,'_wp_old_date','2025-10-03'),
(1315,197,'_wp_old_date','2025-10-03'),
(1317,199,'_wp_old_date','2025-10-03'),
(1319,201,'_wp_old_date','2025-10-03'),
(1321,203,'_wp_old_date','2025-10-03'),
(1323,205,'_wp_old_date','2025-10-03'),
(1325,207,'_wp_old_date','2025-10-03'),
(1327,212,'_edit_last','1'),
(1329,212,'_edit_lock','1759474021:1'),
(1331,212,'_wp_old_date','2025-10-03'),
(1335,216,'_wp_trash_meta_status','publish'),
(1336,216,'_wp_trash_meta_time','1759493128'),
(1337,216,'_wp_desired_post_slug','355690631759493124-2'),
(1339,218,'_wp_old_date','2025-10-03'),
(1343,221,'_wp_old_date','2025-10-04'),
(1344,67,'_wp_old_date','2025-10-01'),
(1345,223,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:6:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:9:\"wp-compat\";s:5:\"1.3.2\";s:13:\"wp-how-change\";s:5:\"1.8.9\";s:13:\"wordpress-seo\";s:4:\"26.0\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(1346,223,'_amp_queried_object','a:2:{s:2:\"id\";i:221;s:4:\"type\";s:4:\"post\";}'),
(1347,223,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.003936052322387695,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.14371204376220703,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6134,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.0010890960693359375,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":false,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":false,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[false,{\"ol\":false},[\"list-style:decimal\"]],[true,{\"li>ol\":false,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47984,\"final_size\":2479,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"6259912a70dafc4e2779e0ccd1d6ad3a\",\"parse_time\":0.06859898567199707,\"shake_time\":0.0007369518280029297,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-theme-transparent-header #primary\":false,\".ast-theme-transparent-header #secondary\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":false},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7716,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0012500286102294922,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":false,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.00012111663818359375,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0004210472106933594,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16629,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.0003910064697265625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\"strong\":true},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":false},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[false,{\".article ol li\":false},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":67,\"final_size\":29,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":221,\"post_type\":\"post\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"f11320fbbe5674f1c6172557f73cc1f5\",\"parse_time\":0.009552001953125,\"shake_time\":5.9604644775390625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:750px\"]],[false,{\"amp-iframe.movie\":false},[\"width:750px\",\"height:450px\"]]],\"included\":true}]'),
(1348,69,'_wp_old_date','2025-10-01'),
(1349,70,'_wp_old_date','2025-10-01'),
(1350,133,'_wp_old_date','2025-10-01'),
(1351,72,'_wp_old_date','2025-10-01'),
(1354,67,'_wp_old_date','2025-10-04'),
(1355,223,'_wp_old_date','2025-10-04'),
(1356,69,'_wp_old_date','2025-10-04'),
(1357,70,'_wp_old_date','2025-10-04'),
(1358,133,'_wp_old_date','2025-10-04'),
(1359,72,'_wp_old_date','2025-10-04'),
(1361,228,'_wp_old_date','2025-10-06'),
(1364,232,'_wp_old_date','2025-10-06'),
(1366,234,'_wp_old_date','2025-10-06'),
(1369,238,'_wp_old_date','2025-10-06'),
(1371,240,'_wp_old_date','2025-10-06'),
(1373,242,'_wp_old_date','2025-10-06'),
(1374,244,'_edit_last','1'),
(1376,244,'_edit_lock','1759755615:1'),
(1378,246,'_wp_old_date','2025-10-06'),
(1379,248,'_edit_last','1'),
(1381,248,'_edit_lock','1759757905:1'),
(1383,248,'_wp_old_date','2025-10-06'),
(1385,251,'_wp_old_date','2025-10-07'),
(1387,253,'_wp_old_date','2025-10-07'),
(1388,256,'_edit_last','1'),
(1390,256,'_edit_lock','1759822233:1'),
(1392,256,'_wp_old_date','2025-10-07'),
(1394,259,'_wp_old_date','2025-10-07'),
(1395,261,'_edit_last','1'),
(1397,261,'_edit_lock','1759822814:1'),
(1399,261,'_wp_old_date','2025-10-07'),
(1401,266,'_edit_last','1'),
(1403,266,'_edit_lock','1759823194:1'),
(1405,266,'_wp_old_date','2025-10-07'),
(1407,269,'_wp_old_date','2025-10-07'),
(1408,271,'_edit_last','1'),
(1410,271,'_edit_lock','1759823342:1'),
(1412,271,'_wp_old_date','2025-10-07'),
(1413,67,'_wp_old_date','2025-10-05'),
(1414,274,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:4:\"26.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(1415,274,'_amp_queried_object','a:2:{s:2:\"id\";i:271;s:4:\"type\";s:4:\"post\";}');
INSERT INTO `wp_postmeta` VALUES
(1416,274,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.005630970001220703,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.13124680519104004,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6143,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.001077890396118164,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":false,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[true,{\".entry-content h3\":false,\"h3\":true},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":false,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[false,{\"ol\":false},[\"list-style:decimal\"]],[true,{\"li>ol\":false,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":52674,\"final_size\":2568,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.comment-reply-title{font-size:24px;font-size:1.6rem;}.ast-comment-meta{line-height:1.666666667;color:var(--ast-global-color-0);font-size:12px;font-size:0.8rem;}.ast-comment-list #cancel-comment-reply-link{font-size:15px;font-size:1rem;}.comments-title {padding: 2em 0;}.comments-title {font-weight: normal;word-wrap: break-word;}.ast-comment-list {margin: 0;word-wrap: break-word;padding-bottom: 0.5em;list-style: none;}.ast-comment-list li {list-style: none;}.ast-comment-list .ast-comment-edit-reply-wrap {-js-display: flex;display: flex;justify-content: flex-end;}.ast-comment-list .ast-edit-link {flex: 1;}.ast-comment-list .comment-awaiting-moderation {margin-bottom: 0;}.ast-comment {padding: 1em 0;}.ast-comment-info img {border-radius: 50%;}.ast-comment-cite-wrap cite {font-style: normal;}.comment-reply-title {padding-top: 1em;font-weight: normal;line-height: 1.65;}.ast-comment-meta {margin-bottom: 0.5em;}.comments-area {border-top: 1px solid #eeeeee;margin-top: 2em;}.comments-area .comment-form-comment {width: 100%;border: none;margin: 0;padding: 0;}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags {margin-bottom: 1.5em;}.comments-area .form-submit {margin-bottom: 0;}.comments-area textarea#comment,.comments-area .ast-comment-formwrap input[type=\\\"text\\\"] {width: 100%;border-radius: 0;vertical-align: middle;margin-bottom: 10px;}.comments-area .no-comments {margin-top: 0.5em;margin-bottom: 0.5em;}.comments-area p.logged-in-as {margin-bottom: 1em;}.ast-separate-container .comments-title {background-color: #fff;padding: 1.2em 3.99em 0;}.ast-separate-container .comments-area {border-top: 0;}.ast-separate-container .ast-comment-list {padding-bottom: 0;}.ast-separate-container .ast-comment-list li {background-color: #fff;}.ast-separate-container .ast-comment-list li.depth-1 {padding: 4em 6.67em;margin-bottom: 2em;}@media (max-width: 1200px) {.ast-separate-container .ast-comment-list li.depth-1 {padding: 3em 3.34em;}}.ast-separate-container .ast-comment-list li.depth-1 .children li {padding-bottom: 0;padding-top: 0;margin-bottom: 0;}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment {border-bottom: 0;}.ast-separate-container .ast-comment-list .comment-respond {padding-top: 0;padding-bottom: 1em;background-color: transparent;}.ast-separate-container .ast-comment-list .pingback p {margin-bottom: 0;}.ast-separate-container .ast-comment-list .bypostauthor {padding: 2em;margin-bottom: 1em;}.ast-separate-container .ast-comment-list .bypostauthor li {background: transparent;margin-bottom: 0;padding: 0 0 0 2em;}.ast-separate-container .comment-respond {background-color: #fff;padding: 4em 6.67em;border-bottom: 0;}@media (max-width: 1200px) {.ast-separate-container .comment-respond {padding: 3em 2.34em;}}.ast-separate-container .comment-reply-title {padding-top: 0;}.comment-content a {word-wrap: break-word;}.comment-form-legend {margin-bottom: unset;padding: 0 0.5em;}.ast-comment-list .children {margin-left: 2em;}@media (max-width: 992px) {.ast-comment-list .children {margin-left: 1em;}}.ast-comment-list #cancel-comment-reply-link {white-space: nowrap;font-size: 15px;font-size: 1rem;margin-left: 1em;}.ast-comment-info {display: flex;position: relative;}.ast-comment-meta {justify-content: right;padding: 0 3.4em 1.60em;}.ast-comment-time .timendate{margin-right: 0.5em;}.comments-area #wp-comment-cookies-consent {margin-right: 10px;}.ast-page-builder-template .comments-area {padding-left: 20px;padding-right: 20px;margin-top: 0;margin-bottom: 2em;}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor {background: transparent;margin-bottom: 0;padding-right: 0;padding-bottom: 0;padding-top: 0;}@media (min-width:922px){.ast-separate-container .ast-comment-list li .comment-respond{padding-left:2.66666em;padding-right:2.66666em;}}@media (max-width:544px){.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-separate-container .comment-respond{padding:1.5em 1em;}.ast-separate-container .ast-comment-list .bypostauthor li{padding:0 0 0 .5em;}.ast-comment-list .children{margin-left:0.66666em;}}@media (max-width:921px){.ast-comment-avatar-wrap img{max-width:2.5em;}.comments-area{margin-top:1.5em;}.ast-separate-container .comments-title{padding:1.43em 1.48em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-avatar-wrap{margin-right:0.5em;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}.comment-reply-title{font-size:24px;font-size:1.6rem;}.ast-comment-meta{line-height:1.666666667;color:var(--ast-global-color-0);font-size:12px;font-size:0.8rem;}.ast-comment-list #cancel-comment-reply-link{font-size:15px;font-size:1rem;}.comments-title {padding: 2em 0;}.comments-title {font-weight: normal;word-wrap: break-word;}.ast-comment-list {margin: 0;word-wrap: break-word;padding-bottom: 0.5em;list-style: none;}.ast-comment-list li {list-style: none;}.ast-comment-list .ast-comment-edit-reply-wrap {-js-display: flex;display: flex;justify-content: flex-end;}.ast-comment-list .ast-edit-link {flex: 1;}.ast-comment-list .comment-awaiting-moderation {margin-bottom: 0;}.ast-comment {padding: 1em 0;}.ast-comment-info img {border-radius: 50%;}.ast-comment-cite-wrap cite {font-style: normal;}.comment-reply-title {padding-top: 1em;font-weight: normal;line-height: 1.65;}.ast-comment-meta {margin-bottom: 0.5em;}.comments-area {border-top: 1px solid #eeeeee;margin-top: 2em;}.comments-area .comment-form-comment {width: 100%;border: none;margin: 0;padding: 0;}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags {margin-bottom: 1.5em;}.comments-area .form-submit {margin-bottom: 0;}.comments-area textarea#comment,.comments-area .ast-comment-formwrap input[type=\\\"text\\\"] {width: 100%;border-radius: 0;vertical-align: middle;margin-bottom: 10px;}.comments-area .no-comments {margin-top: 0.5em;margin-bottom: 0.5em;}.comments-area p.logged-in-as {margin-bottom: 1em;}.ast-separate-container .comments-title {background-color: #fff;padding: 1.2em 3.99em 0;}.ast-separate-container .comments-area {border-top: 0;}.ast-separate-container .ast-comment-list {padding-bottom: 0;}.ast-separate-container .ast-comment-list li {background-color: #fff;}.ast-separate-container .ast-comment-list li.depth-1 {padding: 4em 6.67em;margin-bottom: 2em;}@media (max-width: 1200px) {.ast-separate-container .ast-comment-list li.depth-1 {padding: 3em 3.34em;}}.ast-separate-container .ast-comment-list li.depth-1 .children li {padding-bottom: 0;padding-top: 0;margin-bottom: 0;}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment {border-bottom: 0;}.ast-separate-container .ast-comment-list .comment-respond {padding-top: 0;padding-bottom: 1em;background-color: transparent;}.ast-separate-container .ast-comment-list .pingback p {margin-bottom: 0;}.ast-separate-container .ast-comment-list .bypostauthor {padding: 2em;margin-bottom: 1em;}.ast-separate-container .ast-comment-list .bypostauthor li {background: transparent;margin-bottom: 0;padding: 0 0 0 2em;}.ast-separate-container .comment-respond {background-color: #fff;padding: 4em 6.67em;border-bottom: 0;}@media (max-width: 1200px) {.ast-separate-container .comment-respond {padding: 3em 2.34em;}}.ast-separate-container .comment-reply-title {padding-top: 0;}.comment-content a {word-wrap: break-word;}.comment-form-legend {margin-bottom: unset;padding: 0 0.5em;}.ast-comment-list .children {margin-left: 2em;}@media (max-width: 992px) {.ast-comment-list .children {margin-left: 1em;}}.ast-comment-list #cancel-comment-reply-link {white-space: nowrap;font-size: 15px;font-size: 1rem;margin-left: 1em;}.ast-comment-info {display: flex;position: relative;}.ast-comment-meta {justify-content: right;padding: 0 3.4em 1.60em;}.ast-comment-time .timendate{margin-right: 0.5em;}.comments-area #wp-comment-cookies-consent {margin-right: 10px;}.ast-page-builder-template .comments-area {padding-left: 20px;padding-right: 20px;margin-top: 0;margin-bottom: 2em;}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor {background: transparent;margin-bottom: 0;padding-right: 0;padding-bottom: 0;padding-top: 0;}@media (min-width:922px){.ast-separate-container .ast-comment-list li .comment-respond{padding-left:2.66666em;padding-right:2.66666em;}}@media (max-width:544px){.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-separate-container .comment-respond{padding:1.5em 1em;}.ast-separate-container .ast-comment-list .bypostauthor li{padding:0 0 0 .5em;}.ast-comment-list .children{margin-left:0.66666em;}}@media (max-width:921px){.ast-comment-avatar-wrap img{max-width:2.5em;}.comments-area{margin-top:1.5em;}.ast-separate-container .comments-title{padding:1.43em 1.48em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-avatar-wrap{margin-right:0.5em;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"543d9be378ad6e36435ce92a1ab60206\",\"parse_time\":0.10375595092773438,\"shake_time\":0.000759124755859375,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":true,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-theme-transparent-header #primary\":false,\".ast-theme-transparent-header #secondary\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[true,{\"h3\":true,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":false},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":true,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,{\".comment-reply-title\":false},[\"font-size:24px\",\"font-size:1.6rem\"]],[false,{\".ast-comment-meta\":false},[\"line-height:1.666666667\",\"color:var(--ast-global-color-0)\",\"font-size:12px\",\"font-size:.8rem\"]],[false,{\".ast-comment-list #cancel-comment-reply-link\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".comments-title\":false},[\"padding:2em 0\"]],[false,{\".comments-title\":false},[\"font-weight:normal\",\"word-wrap:break-word\"]],[false,{\".ast-comment-list\":false},[\"margin:0\",\"word-wrap:break-word\",\"padding-bottom:.5em\",\"list-style:none\"]],[false,{\".ast-comment-list li\":false},[\"list-style:none\"]],[false,{\".ast-comment-list .ast-comment-edit-reply-wrap\":false},[\"-js-display:flex\",\"display:flex\",\"justify-content:flex-end\"]],[false,{\".ast-comment-list .ast-edit-link\":false},[\"flex:1\"]],[false,{\".ast-comment-list .comment-awaiting-moderation\":false},[\"margin-bottom:0\"]],[false,{\".ast-comment\":false},[\"padding:1em 0\"]],[false,{\".ast-comment-info amp-img\":false,\".ast-comment-info amp-anim\":false},[\"border-radius:50%\"]],[false,{\".ast-comment-cite-wrap cite\":false},[\"font-style:normal\"]],[false,{\".comment-reply-title\":false},[\"padding-top:1em\",\"font-weight:normal\",\"line-height:1.65\"]],[false,{\".ast-comment-meta\":false},[\"margin-bottom:.5em\"]],[false,{\".comments-area\":false},[\"border-top:1px solid #eee\",\"margin-top:2em\"]],[false,{\".comments-area .comment-form-comment\":false},[\"width:100%\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".comments-area .comment-notes\":false,\".comments-area .comment-textarea\":false,\".comments-area .form-allowed-tags\":false},[\"margin-bottom:1.5em\"]],[false,{\".comments-area .form-submit\":false},[\"margin-bottom:0\"]],[false,{\".comments-area textarea#comment\":false,\".comments-area .ast-comment-formwrap input[type=\\\"text\\\"]\":false},[\"width:100%\",\"border-radius:0\",\"vertical-align:middle\",\"margin-bottom:10px\"]],[false,{\".comments-area .no-comments\":false},[\"margin-top:.5em\",\"margin-bottom:.5em\"]],[false,{\".comments-area p.logged-in-as\":false},[\"margin-bottom:1em\"]],[false,{\".ast-separate-container .comments-title\":false},[\"background-color:#fff\",\"padding:1.2em 3.99em 0\"]],[false,{\".ast-separate-container .comments-area\":false},[\"border-top:0\"]],[false,{\".ast-separate-container .ast-comment-list\":false},[\"padding-bottom:0\"]],[false,{\".ast-separate-container .ast-comment-list li\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:4em 6.67em\",\"margin-bottom:2em\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:3em 3.34em\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-comment-list li.depth-1 .children li\":false},[\"padding-bottom:0\",\"padding-top:0\",\"margin-bottom:0\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1 .ast-comment\":false,\".ast-separate-container .ast-comment-list li.depth-2 .ast-comment\":false},[\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-comment-list .comment-respond\":false},[\"padding-top:0\",\"padding-bottom:1em\",\"background-color:transparent\"]],[false,{\".ast-separate-container .ast-comment-list .pingback p\":false},[\"margin-bottom:0\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:2em\",\"margin-bottom:1em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor li\":false},[\"background:transparent\",\"margin-bottom:0\",\"padding:0 0 0 2em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"background-color:#fff\",\"padding:4em 6.67em\",\"border-bottom:0\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:3em 2.34em\"]],[false,\"}\"],[false,{\".ast-separate-container .comment-reply-title\":false},[\"padding-top:0\"]],[false,{\".comment-content a\":false},[\"word-wrap:break-word\"]],[false,{\".comment-form-legend\":false},[\"margin-bottom:unset\",\"padding:0 .5em\"]],[false,{\".ast-comment-list .children\":false},[\"margin-left:2em\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ast-comment-list .children\":false},[\"margin-left:1em\"]],[false,\"}\"],[false,{\".ast-comment-list #cancel-comment-reply-link\":false},[\"white-space:nowrap\",\"font-size:15px\",\"font-size:1rem\",\"margin-left:1em\"]],[false,{\".ast-comment-info\":false},[\"display:flex\",\"position:relative\"]],[false,{\".ast-comment-meta\":false},[\"justify-content:right\",\"padding:0 3.4em 1.6em\"]],[false,{\".ast-comment-time .timendate\":false},[\"margin-right:.5em\"]],[false,{\".comments-area #wp-comment-cookies-consent\":false},[\"margin-right:10px\"]],[false,{\".ast-page-builder-template .comments-area\":false},[\"padding-left:20px\",\"padding-right:20px\",\"margin-top:0\",\"margin-bottom:2em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor .bypostauthor\":false},[\"background:transparent\",\"margin-bottom:0\",\"padding-right:0\",\"padding-bottom:0\",\"padding-top:0\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container .ast-comment-list li .comment-respond\":false},[\"padding-left:2.66666em\",\"padding-right:2.66666em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor li\":false},[\"padding:0 0 0 .5em\"]],[false,{\".ast-comment-list .children\":false},[\"margin-left:.66666em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".comments-area\":false},[\"margin-top:1.5em\"]],[false,{\".ast-separate-container .comments-title\":false},[\"padding:1.43em 1.48em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-avatar-wrap\":false},[\"margin-right:.5em\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7716,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0012619495391845703,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":false,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.0001239776611328125,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.00047087669372558594,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16629,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.0004029273986816406,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[true,{\"h3\":true},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":false},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[false,{\".article ol li\":false},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":136,\"final_size\":129,\"element\":{\"name\":\"div\",\"attributes\":{\"id\":\"toc\",\"data-amp-original-style\":\"background: #f9f9f9;border: 1px solid #aaa;display: table;margin-bottom: 1em;padding: 1em;width: 350px;\",\"class\":\"amp-wp-22abcbf\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":271,\"post_type\":\"post\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"4cf7b75a293c632457bc6362b882fa3a\",\"parse_time\":0.006494045257568359,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-22abcbf:not(#_#_#_#_#_)\":true},[\"background:#f9f9f9\",\"border:1px solid #aaa\",\"display:table\",\"margin-bottom:1em\",\"padding:1em\",\"width:350px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":69,\"final_size\":66,\"element\":{\"name\":\"p\",\"attributes\":{\"class\":\"toctitle amp-wp-1f3bc52\",\"data-amp-original-style\":\"font-weight: 700;text-align: center;\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":271,\"post_type\":\"post\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":1192,\"function\":\"apply_block_hooks_to_content_from_post_object\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":62,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":442,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":2406,\"function\":\"do_blocks\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":446,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":824,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1723,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/admin\\/class-amp-editor-blocks.php\",\"line\":120,\"function\":\"AMP_Editor_Blocks::tally_content_requiring_amp_scripts\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5691,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":243,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1872,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3484,\"function\":\"convert_smilies\"}]}],\"priority\":70,\"hash\":\"c5f795cff0d9e6edca50bc536c81b6ed\",\"parse_time\":0.015804052352905273,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-1f3bc52:not(#_#_#_#_#_)\":true},[\"font-weight:700\",\"text-align:center\"]]],\"included\":true}]'),
(1417,69,'_wp_old_date','2025-10-05'),
(1418,70,'_wp_old_date','2025-10-05'),
(1419,133,'_wp_old_date','2025-10-05'),
(1420,72,'_wp_old_date','2025-10-05'),
(1421,67,'_wp_old_date','2025-10-07'),
(1422,274,'_wp_old_date','2025-10-07'),
(1423,69,'_wp_old_date','2025-10-07'),
(1424,70,'_wp_old_date','2025-10-07'),
(1425,133,'_wp_old_date','2025-10-07'),
(1428,67,'_wp_old_date','2025-10-08'),
(1429,285,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:7:\"mabar88\";s:3:\"2.0\";}s:7:\"plugins\";a:4:{s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.7\";s:15:\"litespeed-cache\";s:7:\"7.5.0.1\";s:13:\"wordpress-seo\";s:6:\"26.1.1\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),
(1430,285,'_amp_queried_object','a:2:{s:2:\"id\";i:279;s:4:\"type\";s:4:\"post\";}'),
(1431,285,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":86,\"final_size\":136,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":2079,\"function\":\"wp_print_auto_sizes_contain_css_fix\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"c621d07fb5558e1c2469e3aa9c42602a\",\"parse_time\":0.015420198440551758,\"shake_time\":0.004125833511352539,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"amp-img:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true,\"amp-anim:is([sizes=\\\"auto\\\" i], [sizes^=\\\"auto,\\\" i])\":true},[\"contain-intrinsic-size:3000px 1500px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":60,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"litespeed-cache-dummy-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/litespeed-cache\\/assets\\/css\\/litespeed-dummy.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"litespeed-cache-dummy\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.013470888137817383,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1317,\"final_size\":228,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.5.5\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1012,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2250,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"d9cbcea123ed980237b7ccf844b62f01\",\"parse_time\":0.004324197769165039,\"shake_time\":0.14221882820129395,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"object-fit:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":41469,\"final_size\":6122,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"astra-theme-css-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-content\\/themes\\/mabar88\\/assets\\/css\\/minified\\/main.min.css?ver=3.7.9\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":1,\"hash\":\"297834b4c4b19b7b6584facdb172187b\",\"parse_time\":0.08601713180541992,\"shake_time\":0.0011789798736572266,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"address\":false,\"blockquote\":false,\"body\":true,\"dd\":false,\"dl\":false,\"dt\":false,\"fieldset\":false,\"figure\":false,\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false,\"hr\":false,\"html\":true,\"amp-iframe\":false,\"legend\":false,\"li\":true,\"ol\":true,\"p\":true,\"pre\":false,\"textarea\":false,\"ul\":true},[\"border:0\",\"font-size:100%\",\"font-style:inherit\",\"font-weight:inherit\",\"margin:0\",\"outline:0\",\"padding:0\",\"vertical-align:baseline\"]],[true,{\"html\":true},[\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\"]],[true,{\"body\":true},[\"margin:0\"]],[false,{\"main\":false,\"nav\":false},[\"display:block\"]],[false,{\"progress\":false},[\"display:inline-block\",\"vertical-align:baseline\"]],[true,{\"a\":true},[\"background-color:transparent\"]],[true,{\"a:active\":true},[\"outline:0\"]],[true,{\"a\":true,\"a:focus\":true,\"a:hover\":true,\"a:visited\":true},[\"text-decoration:none\"]],[false,{\"abbr[title]\":false},[\"border-bottom:1px dotted\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[false,{\"mark\":false},[\"background:#ff0\",\"color:#000\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"font-size:75%\",\"line-height:0\",\"position:relative\",\"vertical-align:baseline\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"border:0\"]],[false,{\"svg:not(:root)\":false},[\"overflow:hidden\"]],[false,{\"figure\":false},[\"margin:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\"]],[false,{\"pre\":false},[\"overflow:auto\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-size:1em\"]],[true,{\"button\":false,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"color:inherit\",\"font:inherit\",\"margin:0\"]],[false,{\"button\":false},[\"overflow:visible\"]],[false,{\"button\":false,\"select\":false},[\"text-transform:none\"]],[true,{\"button\":false,\"html input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"-webkit-appearance:button\",\"cursor:pointer\"]],[true,{\"button[disabled]\":false,\"html input[disabled]\":true},[\"cursor:default\"]],[true,{\"button::-moz-focus-inner\":false,\"input::-moz-focus-inner\":true},[\"border:0\",\"padding:0\"]],[true,{\"input\":true},[\"line-height:normal\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=number]::-webkit-inner-spin-button\":true,\"input[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"input[type=search]\":true},[\"-webkit-appearance:textfield\",\"box-sizing:content-box\"]],[false,{\"#comments .submit\":false,\".search .search-submit\":false},[\"padding:10px 15px\",\"border-radius:2px\",\"line-height:1.8571428571429\",\"border:0\"]],[false,{\".search .site-main .ast-search-submit\":false},[\"display:none\"]],[true,{\"input[type=search]::-webkit-search-cancel-button\":true,\"input[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[false,{\"fieldset\":false},[\"border:1px solid #eaeaea\",\"margin:0 0\",\"padding:.35em .625em .75em\"]],[false,{\"legend\":false},[\"border:0\",\"padding:0\"]],[false,{\"fieldset legend\":false},[\"margin-bottom:1.5em\",\"padding:0 .5em\"]],[false,{\"textarea\":false},[\"overflow:auto\"]],[false,{\"optgroup\":false},[\"font-weight:700\"]],[false,{\"table\":false},[\"border-collapse:collapse\",\"border-spacing:0\"]],[false,{\"td\":false,\"th\":false},[\"padding:0\"]],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,{\".ast-container\":false,\".ast-container-fluid\":false},[\"margin-left:auto\",\"margin-right:auto\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-row\":false},[\"margin-left:-20px\",\"margin-right:-20px\"]],[false,{\".ast-grid-common-col\":false},[\"position:relative\",\"min-height:1px\",\"padding-left:20px\",\"padding-right:20px\"]],[false,{\".ast-float\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".ast-width-sm-25\":false},[\"width:25%\"]],[false,{\".ast-width-md-50\":false},[\"width:50%\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-width-md-25\":false},[\"width:25%\"]],[false,\"}\"],[false,{\".ast-full-width\":false},[\"width:100%\"]],[false,{\".ast-width-50\":false},[\"width:50%\"]],[false,\"@media (min-width:768px){\"],[false,{\".ast-width-md-4\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-md-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-md-6\":false},[\"width:50%\",\"float:left\"]],[false,{\".ast-width-md-3\":false},[\"width:25%\"]],[false,{\".ast-width-md-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[false,\"@media (min-width:769px){\"],[false,{\".ast-width-md-20\":false},[\"width:20%\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".ast-width-lg-33\":false},[\"width:33.3333333333%\"]],[false,{\".ast-width-lg-16\":false},[\"width:16.6666666667%\"]],[false,{\".ast-width-lg-50\":false},[\"width:50%\"]],[false,{\".ast-width-lg-66\":false},[\"width:66.6666666667%\"]],[false,\"}\"],[true,{\"h1\":true,\"h2\":true,\"h3\":false,\"h4\":false,\"h5\":false,\"h6\":false},[\"clear:both\"]],[true,{\".entry-content h1\":false,\"h1\":true},[\"color:#808285\",\"font-size:2em\",\"line-height:1.2\"]],[true,{\".entry-content h2\":false,\"h2\":true},[\"color:#808285\",\"font-size:1.7em\",\"line-height:1.3\"]],[false,{\".entry-content h3\":false,\"h3\":false},[\"color:#808285\",\"font-size:1.5em\",\"line-height:1.4\"]],[false,{\".entry-content h4\":false,\"h4\":false},[\"color:#808285\",\"line-height:1.5\",\"font-size:1.3em\"]],[false,{\".entry-content h5\":false,\"h5\":false},[\"color:#808285\",\"line-height:1.6\",\"font-size:1.2em\"]],[false,{\".entry-content h6\":false,\"h6\":false},[\"color:#808285\",\"line-height:1.7\",\"font-size:1.1em\"]],[true,{\"html\":true},[\"box-sizing:border-box\"]],[true,{\"*\":true,\":after\":true,\":before\":true},[\"box-sizing:inherit\"]],[true,{\"body\":true},[\"color:#808285\",\"background:#fff\",\"font-style:normal\"]],[true,{\"ol\":true,\"ul\":true},[\"margin:0 0 1.5em 3em\"]],[true,{\"ul\":true},[\"list-style:disc\"]],[true,{\"ol\":true},[\"list-style:decimal\"]],[true,{\"li>ol\":true,\"li>ul\":true},[\"margin-bottom:0\",\"margin-left:1.5em\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin:0 1.5em 1.5em\"]],[false,{\"b\":false,\"strong\":false},[\"font-weight:700\"]],[true,{\"cite\":false,\"dfn\":false,\"em\":false,\"i\":true},[\"font-style:italic\"]],[false,{\"blockquote\":false,\"q\":false},[\"quotes:\\\"\\\" \\\"\\\"\"]],[false,{\"blockquote:after\":false,\"blockquote:before\":false,\"q:after\":false,\"q:before\":false},[\"content:\\\"\\\"\"]],[false,{\"blockquote\":false},[\"border-left:5px solid rgba(0,0,0,.05)\",\"padding:20px\",\"font-size:1.2em\",\"font-style:italic\",\"margin:0 0 1.5em\",\"position:relative\"]],[false,{\"address\":false},[\"margin:0 0 1.5em\"]],[false,{\"abbr\":false,\"acronym\":false},[\"border-bottom:1px dotted #666\",\"cursor:help\"]],[false,{\"pre\":false},[\"background:#eee\",\"font-family:\\\"Courier 10 Pitch\\\",Courier,monospace\",\"margin-bottom:1.6em\",\"overflow:auto\",\"max-width:100%\",\"padding:1.6em\"]],[false,{\"code\":false,\"kbd\":false,\"tt\":false,\"var\":false},[\"font:15px Monaco,Consolas,\\\"Andale Mono\\\",\\\"DejaVu Sans Mono\\\",monospace\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"height:auto\",\"max-width:100%\"]],[false,{\"hr\":false},[\"background-color:#ccc\",\"border:0\",\"height:1px\",\"margin-bottom:1.5em\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false},[\"color:#808285\",\"font-weight:400\",\"font-size:100%\",\"margin:0\",\"vertical-align:baseline\"]],[true,{\"button\":false,\"input\":true},[\"line-height:normal\"]],[false,{\"big\":false},[\"font-size:125%\"]],[false,{\"ins\":false,\"mark\":false},[\"background:0 0\",\"text-decoration:none\"]],[false,{\"table\":false,\"td\":false,\"th\":false},[\"border:1px solid rgba(0,0,0,.1)\"]],[false,{\"table\":false},[\"border-collapse:separate\",\"border-spacing:0\",\"border-width:1px 0 0 1px\",\"margin:0 0 1.5em\",\"width:100%\"]],[false,{\"th\":false},[\"font-weight:700\"]],[false,{\"td\":false,\"th\":false},[\"padding:8px\",\"border-width:0 1px 1px 0\"]],[true,{\".ast-button\":false,\".button\":false,\"button\":false,\"input[type=button]\":true,\"input[type=reset]\":true,\"input[type=submit]\":true},[\"border:1px solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#e6e6e6\",\"padding:.6em 1em .4em\",\"color:#fff\"]],[true,{\".ast-button:focus\":false,\".ast-button:hover\":false,\".button:focus\":false,\".button:hover\":false,\"button:focus\":false,\"button:hover\":false,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"color:#fff\",\"border-color:#eaeaea\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"button:active\":false,\"button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=reset]:active\":true,\"input[type=reset]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"border-color:#eaeaea\",\"outline:0\"]],[true,{\"input[type=email]\":true,\"input[type=password]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"textarea\":false},[\"color:#666\",\"border:1px solid #ccc\",\"border-radius:2px\",\"-webkit-appearance:none\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"textarea:focus\":false},[\"color:#111\"]],[false,{\"textarea\":false},[\"padding-left:3px\",\"width:100%\"]],[true,{\"a\":true},[\"color:#4169e1\"]],[true,{\"a:focus\":true,\"a:hover\":true},[\"color:#191970\"]],[true,{\"a:focus\":true},[\"outline:thin dotted\"]],[true,{\"a:hover\":true},[\"outline:0\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#f1f1f1\",\"border-radius:2px\",\"box-shadow:0 0 2px 2px rgba(0,0,0,.6)\",\"color:#21759b\",\"display:block\",\"font-size:12.25px\",\"font-size:.875rem\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]],[false,{\".alignleft\":false},[\"display:inline\",\"float:left\",\"margin-right:1.5em\"]],[false,{\".alignright\":false},[\"display:inline\",\"float:right\",\"margin-left:1.5em\"]],[false,{\".aligncenter\":false},[\"clear:both\",\"text-align:center\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\"embed\":false,\"amp-iframe\":false,\"amp-google-document-embed\":false},[\"max-width:100%\"]],[false,{\".wp-caption\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-caption amp-img[class*=wp-image-]\":false,\".wp-caption amp-anim[class*=wp-image-]\":false},[\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"margin:.8075em 0\"]],[false,{\".wp-caption-text\":false},[\"text-align:center\"]],[true,{\"::selection\":true},[\"color:#fff\",\"background:#0274be\"]],[true,{\"body\":true},[\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"body:not(.logged-in)\":true},[\"position:relative\"]],[false,{\"#page\":false},[\"position:relative\"]],[true,{\"a\":true,\"a:focus\":true},[\"text-decoration:none\"]],[true,{\".secondary a *\":false,\".site-footer a *\":true,\".site-header a *\":false,\"a\":true},[\"transition:all .2s linear\"]],[false,{\".capitalize\":false},[\"text-transform:uppercase\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"vertical-align:middle\"]],[false,{\".entry-content h1\":false,\".entry-content h2\":false,\".entry-content h3\":false,\".entry-content h4\":false,\".entry-content h5\":false,\".entry-content h6\":false},[\"margin-bottom:20px\"]],[true,{\"p\":true},[\"margin-bottom:1.75em\"]],[false,{\"blockquote\":false},[\"margin:1.5em 1em 1.5em 3em\",\"font-size:1.1em\",\"line-height:inherit\",\"position:relative\"]],[true,{\".ast-button\":false,\".button\":false,\"input[type=button]\":true,\"input[type=submit]\":true},[\"border-radius:0\",\"padding:18px 30px\",\"border:0\",\"box-shadow:none\",\"text-shadow:none\"]],[true,{\".ast-button:hover\":false,\".button:hover\":false,\"input[type=button]:hover\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[true,{\".ast-button:active\":false,\".ast-button:focus\":false,\".button:active\":false,\".button:focus\":false,\"input[type=button]:active\":true,\"input[type=button]:focus\":true,\"input[type=submit]:active\":true,\"input[type=submit]:focus\":true},[\"box-shadow:none\"]],[false,{\".site-title\":false},[\"font-weight:400\"]],[false,{\".site-description\":false,\".site-title\":false},[\"margin-bottom:0\"]],[false,{\".site-description a\":false,\".site-description:focus a\":false,\".site-description:hover a\":false,\".site-title a\":false,\".site-title:focus a\":false,\".site-title:hover a\":false},[\"transition:all .2s linear\"]],[false,{\".site-title a\":false,\".site-title a:focus\":false,\".site-title a:hover\":false,\".site-title a:visited\":false},[\"color:#222\"]],[false,{\".site-description a\":false,\".site-description a:focus\":false,\".site-description a:hover\":false,\".site-description a:visited\":false},[\"color:#999\"]],[false,{\".search-form .search-field\":false},[\"outline:0\"]],[false,{\".ast-search-menu-icon\":false},[\"position:relative\",\"z-index:3\"]],[false,{\".site .skip-link\":false},[\"background-color:#f1f1f1\",\"box-shadow:0 0 1px 1px rgba(0,0,0,.2)\",\"color:#21759b\",\"display:block\",\"font-family:Montserrat,\\\"Helvetica Neue\\\",sans-serif\",\"font-size:14px\",\"font-weight:700\",\"left:-9999em\",\"outline:0\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"text-transform:none\",\"top:-9999em\"]],[false,{\".site .skip-link:focus\":false},[\"clip:auto\",\"height:auto\",\"left:6px\",\"top:7px\",\"width:auto\",\"z-index:100000\",\"outline:thin dotted\"]],[false,{\".logged-in .site .skip-link\":false},[\"box-shadow:0 0 2px 2px rgba(0,0,0,.2)\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[true,{\"input\":true,\"select\":false},[\"line-height:1\"]],[true,{\".ast-button\":false,\".ast-custom-button\":false,\"body\":true,\"button\":false,\"input[type=button]\":true,\"input[type=submit]\":true,\"textarea\":false},[\"line-height:1.8571428571429\"]],[false,{\".site-title a\":false},[\"line-height:1.2\"]],[false,{\".site-header .site-description\":false},[\"line-height:1.5\"]],[false,{\".ast-single-post .entry-title\":false,\".ast-single-post .entry-title a\":false},[\"line-height:1.2\"]],[false,{\".entry-title\":false,\".entry-title a\":false},[\"font-weight:400\"]],[false,{\".ast-oembed-container\":false},[\"position:relative\",\"padding-top:56.25%\",\"height:0\",\"height:auto\",\"overflow:hidden\",\"max-width:100%\"]],[false,{\".ast-oembed-container embed\":false,\".ast-oembed-container amp-iframe\":false,\".ast-oembed-container amp-google-document-embed\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\"body .ast-oembed-container *\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\",\"height:100%\"]],[false,{\".ast-hidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"body\":true},[\"background-color:#fff\"]],[false,{\"#page\":false},[\"display:block\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"width:100%\"]],[false,{\"#primary\":false},[\"margin:4em 0\"]],[false,{\".ast-separate-container\":false},[\"background-color:#f5f5f5\"]],[false,{\".ast-separate-container #primary\":false},[\"padding:4em 0\",\"margin:0\",\"border:0\"]],[false,{\".ast-separate-container .site-main>.ast-row\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false},[\"background-color:#fff\"]],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"border-bottom:1px solid #eee\",\"margin:0\",\"padding:5.34em 6.67em\"]],[false,{\".ast-separate-container .blog-layout-1\":false},[\"padding:0\",\"border-bottom:0\"]],[false,{\".ast-separate-container .ast-article-single\":false},[\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (min-width:993px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"margin:4em 0\",\"padding:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:60px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false,\".ast-separate-container.ast-right-sidebar #primary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:30px\"]],[false,{\".ast-left-sidebar #primary\":false},[\"padding-left:30px\"]],[false,\"}\"],[false,{\".ast-search-icon .astra-search-icon\":false},[\"font-size:1.3em\"]],[false,{\".main-navigation\":false},[\"height:100%\",\"-js-display:inline-flex\",\"display:inline-flex\"]],[false,{\".main-navigation ul\":false},[\"list-style:none\",\"margin:0\",\"padding-left:0\",\"position:relative\"]],[false,{\".main-header-menu .menu-link\":false,\".main-header-menu>a\":false},[\"text-decoration:none\",\"padding:0 1em\",\"display:inline-block\",\"transition:all .2s linear\"]],[false,{\".main-header-menu .menu-item\":false},[\"position:relative\"]],[false,{\".main-header-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .menu-item:hover>.sub-menu\":false},[\"right:auto\",\"left:0\"]],[false,{\".main-header-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"right:0\",\"left:auto\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu\":false},[\"width:240px\",\"background:#fff\",\"left:-999em\",\"position:absolute\",\"top:100%\",\"z-index:99999\"]],[false,\"@media (min-width:769px){\"],[false,{\".main-header-menu .sub-menu .menu-item:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .menu-item:hover>.sub-menu\":false},[\"left:100%\",\"right:auto\"]],[false,{\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu\":false,\".main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:-100%\"]],[false,{\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:-100%\"]],[false,\"}\"],[false,{\".main-header-menu .sub-menu .menu-link\":false},[\"padding:.9em 1em\",\"display:block\",\"word-wrap:break-word\"]],[false,{\".main-header-menu .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:none\"]],[false,{\"#ast-desktop-header .main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .icon-arrow svg\":false},[\"position:absolute\",\"right:.6em\",\"top:50%\",\"transform:translate(0,-50%) rotate(270deg)\"]],[false,{\".main-header-menu .sub-menu .sub-menu\":false},[\"top:0\"]],[false,{\".submenu-with-border .sub-menu\":false},[\"border-width:1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .menu-link\":false},[\"border-width:0 0 1px\",\"border-style:solid\"]],[false,{\".submenu-with-border .sub-menu .sub-menu\":false},[\"top:-1px\"]],[false,{\".ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link\":false},[\"border-bottom-width:0\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"padding-left:0\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type\":false},[\"margin-right:5px\"]],[false,{\".ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type\":false},[\"display:inline\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:50px\"]],[false,{\".ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-header-break-point .main-header-menu\":false},[\"background-color:#f9f9f9\",\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:focus-within>.sub-menu\":false,\".ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu\":false},[\"left:0\"]],[false,{\".ast-header-break-point .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-header-break-point .dropdown-menu-toggle\":false},[\"display:none\"]],[false,{\".ast-mobile-menu-buttons\":false},[\"display:none\"]],[false,{\".ast-button-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap button\":false},[\"box-shadow:none\",\"border:none\"]],[false,{\".ast-button-wrap .menu-toggle\":false},[\"padding:0\",\"width:2.2em\",\"height:2.1em\",\"font-size:1.5em\",\"font-weight:400\",\"border-radius:2px\",\"border-radius:2px\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"vertical-align:middle\",\"line-height:1.8571428571429\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:0 .5em\",\"width:auto\",\"text-align:center\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu\":false},[\"font-size:15px\",\"font-size:1rem\",\"font-weight:600\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon\":false},[\"font-style:normal\",\"display:inline-block\",\"vertical-align:middle\",\"line-height:2.05\"]],[false,{\".ast-button-wrap .menu-toggle .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5d2\\\"\",\"font-family:Astra\",\"text-decoration:inherit\"]],[false,{\".ast-button-wrap .menu-toggle .icon-menu-bars svg:nth-child(2)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before\":false},[\"content:\\\"\\ue5cd\\\"\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(1)\":false},[\"display:none\"]],[false,{\".ast-button-wrap .menu-toggle.toggled .icon-menu-bars svg:nth-child(2)\":false},[\"display:block\"]],[false,{\".ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"display:inline-block\"]],[false,{\".ast-button-wrap .menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".header-main-layout-1 .ast-main-header-bar-alignment\":false},[\"margin-left:auto\"]],[false,{\".site-navigation\":false},[\"height:100%\"]],[false,{\".site-header .menu-link *\":false},[\"transition:none\"]],[false,{\".ast-icon.icon-arrow svg\":false},[\"height:.6em\",\"width:.6em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".ast-icon.icon-search svg\":false},[\"height:1em\",\"width:.9em\",\"margin-top:3px\",\"margin-right:2px\"]],[false,{\".ast-header-break-point .user-select\":false},[\"clear:both\"]],[false,{\".ast-header-break-point .ast-mobile-menu-buttons\":false},[\"display:block\",\"align-self:center\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"flex:auto\"]],[false,{\".ast-header-break-point .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"flex:auto\",\"order:4\"]],[false,{\".ast-header-break-point .ast-icon.icon-arrow svg\":false},[\"height:.85em\",\"width:.95em\",\"position:relative\",\"margin-left:10px\"]],[false,{\".site-main .comment-navigation\":false,\".site-main .post-navigation\":false,\".site-main .posts-navigation\":false},[\"margin:0 0 1.5em\",\"overflow:hidden\"]],[false,{\".comment-navigation .nav-next\":false,\".comment-navigation .nav-previous\":false,\".post-navigation .nav-next\":false,\".post-navigation .nav-previous\":false,\".posts-navigation .nav-next\":false,\".posts-navigation .nav-previous\":false},[\"width:50%\",\"display:inline-block\"]],[false,{\".comment-navigation .nav-next\":false,\".post-navigation .nav-next\":false,\".posts-navigation .nav-next\":false},[\"text-align:right\"]],[false,{\".ast-icon svg\":false},[\"fill:currentColor\"]],[false,{\".post-navigation a\":false},[\"background:0 0\",\"font-size:16px\",\"font-size:1.06666rem\",\"padding:0 1.5em\",\"height:2.33333em\",\"line-height:calc(2.33333em - 3px)\"]],[true,{\".sticky\":true},[\"display:block\"]],[false,{\".hentry\":false},[\"margin:0 0 1.5em\"]],[false,{\".byline\":false,\".updated:not(.published)\":false},[\"display:none\"]],[false,{\".group-blog .byline\":false,\".single .byline\":false},[\"display:inline\"]],[false,{\".page-links\":false},[\"clear:both\",\"margin-top:1em\"]],[false,{\".page-links a\":false},[\"display:inline-block\"]],[false,{\".page-links a .page-link\":false},[\"border-color:#eaeaea\",\"background:0 0\"]],[false,{\".page-links .page-link\":false},[\"padding:0\",\"margin:0 0 .3em .3em\",\"border:2px solid #eaeaea\",\"color:#000\",\"background:0 0\",\"font-size:.8em\",\"width:2.5em\",\"height:2.5em\",\"line-height:calc(2.5em - 4px)\",\"display:inline-block\",\"text-align:center\",\"transition:all .2s linear\"]],[false,{\".page-links .page-link:focus\":false,\".page-links .page-link:hover\":false},[\"color:#000\"]],[false,\"@media (max-width:768px){\"],[false,{\".page-links .page-link\":false},[\"margin-bottom:6px\"]],[false,\"}\"],[true,{\".entry-content>:last-child\":false,\".entry-summary>:last-child\":false,\".page-content>:last-child\":true},[\"margin-bottom:0\"]],[false,{\".bypostauthor\":false},[\"display:block\"]],[false,{\".ast-no-sidebar .entry-content .alignfull\":false},[\"margin-left:calc(-50vw + 50%)\",\"margin-right:calc(-50vw + 50%)\",\"max-width:100vw\",\"width:100vw\"]],[false,{\".ast-no-sidebar .entry-content .alignfull .alignfull\":false,\".ast-no-sidebar .entry-content .alignfull .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .alignwide\":false},[\"margin-left:calc(-41vw + 50%)\",\"margin-right:calc(-41vw + 50%)\",\"max-width:unset\",\"width:unset\"]],[false,{\".ast-no-sidebar .entry-content .alignwide .alignfull\":false,\".ast-no-sidebar .entry-content .alignwide .alignwide\":false},[\"width:100%\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-no-sidebar .entry-content .wp-block-column .alignfull\":false,\".ast-no-sidebar .entry-content .wp-block-column .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:100%\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"margin:0\"]],[false,{\".wp-block-separator\":false},[\"max-width:100px\"]],[false,{\".wp-block-separator.is-style-dots\":false,\".wp-block-separator.is-style-wide\":false},[\"max-width:none\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:10px\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:10px\"]],[false,\"@media (max-width:782px){\"],[false,{\".entry-content .wp-block-columns .wp-block-column\":false},[\"flex-basis:100%\"]],[false,{\".entry-content .has-2-columns .wp-block-column:first-child\":false},[\"padding-right:0\"]],[false,{\".entry-content .has-2-columns .wp-block-column:last-child\":false},[\"padding-left:0\"]],[false,\"}\"],[true,{\"body\":true},[\"overflow-x:hidden\"]],[false,{\"body .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\"body .entry-content .wp-block-latest-posts li\":false},[\"list-style:none\"]],[false,{\".ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts\":false},[\"margin-left:0\"]],[false,{\".ast-header-break-point .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content .blocks-gallery-item amp-img\":false,\".entry-content .blocks-gallery-item amp-anim\":false},[\"margin-bottom:auto\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid #555d66\",\"border-bottom:4px solid #555d66\",\"color:#40464d\"]],[false,{\".widget-title\":false},[\"font-weight:400\",\"margin-bottom:1em\",\"line-height:1.5\"]],[false,{\".widget\":false},[\"margin:0 0 2.8em 0\"]],[false,{\".widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".widget select\":false},[\"max-width:100%\"]],[false,{\".widget ul\":false},[\"margin:0\",\"list-style-type:none\"]],[false,{\".no-widget-text\":false},[\"margin-bottom:0\"]],[false,{\".widget_nav_menu ul ul.sub-menu\":false},[\"margin-top:.25em\"]],[false,{\".widget_nav_menu ul ul.sub-menu li\":false},[\"padding-left:20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu a:after\":false},[\"left:-20px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_nav_menu ul ul.sub-menu ul ul a:after\":false},[\"left:-60px\"]],[false,{\".widget_nav_menu li\":false},[\"transition:all .2s linear\"]],[false,{\".widget_search .search-form\":false},[\"position:relative\",\"padding:0\",\"background:initial\",\"color:inherit\"]],[false,{\".widget_search .search-form>label\":false},[\"position:relative\"]],[false,{\".widget_search .search-form i\":false},[\"color:#3a3a3a\"]],[false,{\".widget_search .search-form button\":false},[\"position:absolute\",\"top:0\",\"right:15px\",\"border:none\",\"padding:0\",\"cursor:pointer\",\"background:0 0\"]],[false,{\".widget_search .search-form input[type=submit]\":false,\".widget_search .search-form input[type=submit]:focus\":false,\".widget_search .search-form input[type=submit]:hover\":false},[\"padding:13px 20px\",\"border-radius:2px\",\"border:none\",\"top:0\",\"right:0\",\"position:absolute\",\"color:transparent\",\"background:0 0\",\"max-width:45px\",\"z-index:2\"]],[false,{\".widget_search .search-form .search-field\":false},[\"background:#fafafa\",\"border-width:1px\",\"border-color:#eaeaea\",\"border-radius:2px\"]],[false,{\".widget_search .search-field\":false,\".widget_search .search-field:focus\":false},[\"width:100%\",\"padding:16px 45px 16px 15px\"]],[false,{\".widget_archive ul.children\":false,\".widget_categories ul.children\":false,\".widget_pages ul.children\":false},[\"position:relative\",\"margin-top:5px\",\"width:100%\"]],[false,{\".widget_archive ul.children li\":false,\".widget_categories ul.children li\":false,\".widget_pages ul.children li\":false},[\"padding-left:20px\"]],[false,{\".widget_archive li ul.children a:after\":false,\".widget_categories li ul.children a:after\":false,\".widget_pages li ul.children a:after\":false},[\"left:-20px\"]],[false,{\".widget_archive li ul.children ul a:after\":false,\".widget_categories li ul.children ul a:after\":false,\".widget_pages li ul.children ul a:after\":false},[\"left:-40px\"]],[false,{\".widget_tag_cloud .tagcloud\":false},[\"margin-top:10px\",\"display:inline-block\"]],[false,{\".widget_tag_cloud .tagcloud a\":false},[\"border:1px solid #e2e2e2\",\"padding:.5em .9em\",\"display:inline-block\",\"margin-bottom:4px\",\"font-size:14px\",\"margin-right:4px\",\"line-height:1.5\",\"transition:all .2s linear\"]],[false,{\".widget_calendar table\":false,\".widget_calendar td\":false,\".widget_calendar th\":false},[\"padding:0\",\"text-align:center\"]],[false,{\".widget_calendar table\":false,\".widget_calendar th\":false},[\"border:none\"]],[false,{\".widget_calendar td\":false},[\"border-right:none\",\"border-left:none\"]],[false,{\".widget_calendar caption\":false},[\"line-height:2.7em\"]],[false,{\".widget_calendar thead\":false},[\"line-height:2.5em\"]],[false,{\".widget_calendar thead a\":false},[\"color:#0274be\",\"font-size:1rem\",\"vertical-align:middle\"]],[false,{\".widget_calendar thead td\":false},[\"vertical-align:middle\",\"font-weight:700\"]],[false,{\".widget_calendar thead>tr>th\":false},[\"line-height:2.5em\",\"border-bottom:2px solid #eaeaea\",\"border-top:2px solid #eaeaea\"]],[false,{\".widget_calendar tbody\":false},[\"line-height:2.1em\",\"text-align:center\"]],[false,{\".widget_calendar tbody>tr>td\":false},[\"width:14.2857%\"]],[false,{\".widget_calendar tbody>tr:first-child>td\":false},[\"padding-top:3px\"]],[false,{\".widget_calendar #today\":false},[\"background:#0274be\"]],[false,{\".ast-builder-grid-row\":false},[\"display:grid\",\"grid-template-columns:auto auto\",\"align-items:center\",\"grid-column-gap:20px\",\"overflow-wrap:anywhere\"]],[false,{\".ast-builder-grid-row>.site-header-section\":false},[\"flex-wrap:nowrap\"]],[false,{\".ast-builder-footer-grid-columns\":false},[\"grid-column-gap:50px\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout\":false},[\"grid-template-columns:1fr auto 1fr\"]],[false,{\".ast-builder-layout-element\":false},[\"align-items:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only\":false},[\"-js-display:flex\",\"display:flex\",\"height:100%\",\"justify-content:center\"]],[false,{\".ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center\":false},[\"flex-grow:1\"]],[false,{\".site-header-section\":false},[\"height:100%\",\"min-height:0\",\"align-items:center\"]],[false,{\".site-header-section .ast-main-header-bar-alignment\":false},[\"height:100%\"]],[false,{\".site-header-section>*\":false},[\"padding:0 10px\"]],[false,{\".site-header-section>div:first-child\":false},[\"padding-left:0\"]],[false,{\".site-header-section>div:last-child\":false},[\"padding-right:0\"]],[false,{\".site-header-section .ast-builder-menu\":false},[\"align-items:center\"]],[false,{\".ast-builder-layout-element.ast-header-search\":false},[\"height:auto\"]],[false,{\".ast-grid-right-center-section\":false},[\"justify-content:flex-start\",\"flex-grow:1\"]],[false,{\".ast-grid-right-section\":false},[\"justify-content:flex-end\"]],[false,{\".ast-grid-right-section .ast-site-identity>:first-child\":false},[\"text-align:right\"]],[false,{\".ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child\":false},[\"text-align:left\"]],[false,{\".ast-grid-left-center-section\":false},[\"justify-content:flex-end\",\"flex-grow:1\"]],[false,{\".ast-logo-title-inline .ast-site-identity\":false},[\"padding:1em 0\",\"-js-display:inline-flex\",\"display:inline-flex\",\"vertical-align:middle\",\"align-items:center\",\"transition:all .2s linear\"]],[false,{\".ast-grid-section-center\":false},[\"justify-content:center\"]],[false,{\".ast-grid-section-center .ast-site-identity>:first-child\":false},[\"text-align:center\"]],[false,{\".ast-builder-social-element\":false},[\"line-height:1\",\"color:#3a3a3a\",\"background:0 0\",\"vertical-align:middle\",\"transition:all 10ms\",\"margin-left:6px\",\"margin-right:6px\",\"justify-content:center\",\"align-items:center\"]],[false,{\".ast-builder-social-element:hover\":false},[\"color:#0274be\"]],[false,{\".ast-builder-social-element .social-item-label\":false},[\"padding-left:6px\"]],[false,{\".ast-social-stack-desktop .ast-builder-social-element\":false,\".ast-social-stack-mobile .ast-builder-social-element\":false,\".ast-social-stack-tablet .ast-builder-social-element\":false},[\"margin-top:6px\",\"margin-bottom:6px\"]],[false,{\".ahfb-svg-iconset\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ahfb-svg-iconset svg\":false},[\"width:17px\",\"height:17px\",\"transition:none\"]],[false,{\".ahfb-svg-iconset svg>*\":false},[\"transition:none\"]],[false,{\".ast-footer-copyright p\":false},[\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-container\":false},[\"display:grid\",\"align-content:center\"]],[false,{\".main-header-bar .main-header-bar-navigation\":false},[\"height:100%\"]],[false,{\".ast-nav-menu .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".ast-builder-menu .main-navigation\":false},[\"padding:0\"]],[false,{\".ast-builder-menu .main-navigation>ul\":false},[\"align-self:center\"]],[false,{\".ast-footer-copyright\":false,\".ast-footer-social-wrap\":false,\".site-footer-focus-item\":false},[\"width:100%\"]],[false,{\"#astra-footer-menu\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\"#astra-footer-menu>ul\":false},[\"margin:0\",\"list-style:none\",\"background:inherit\"]],[false,{\".ast-header-break-point #ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:0\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\"]],[false,{\".ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false,\".ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .ast-nav-menu .sub-menu\":false},[\"line-height:3\"]],[false,{\".site-footer-section\":false},[\"justify-content:center\"]],[false,{\".site-footer-section>*\":false},[\"margin-bottom:10px\"]],[false,{\".site-footer-section>:last-child\":false},[\"margin-bottom:0\"]],[false,{\".site-primary-footer-wrap\":false},[\"padding-top:45px\",\"padding-bottom:45px\"]],[false,{\".site-above-footer-wrap\":false,\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".ast-hfb-header.ast-header-break-point .main-header-bar-navigation\":false},[\"width:100%\",\"margin:0\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-mobile-svg\":false},[\"display:none\"]],[false,{\".ast-hfb-header .menu-toggle.toggled .ast-close-svg\":false},[\"display:block\"]],[false,{\".menu-toggle .ast-close-svg\":false},[\"display:none\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"-js-display:flex\",\"display:flex\",\"align-items:center\",\"width:auto\",\"height:auto\"]],[false,{\".menu-toggle .mobile-menu-toggle-icon\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\"]],[false,{\".menu-toggle .mobile-menu-wrap\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-self:center\",\"margin-left:.4em\"]],[false,{\".ast-hfb-header .ast-button-wrap .menu-toggle .mobile-menu-wrap\":false},[\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-button-wrap .menu-toggle.main-header-menu-toggle\":false},[\"padding:.5em\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-search-menu-icon.ast-inline-search .search-field\":false},[\"width:100%\",\"padding:.6em\",\"padding-right:5.5em\"]],[false,\"@media (min-width:769px){\"],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li\":false},[\"margin:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:first-child a\":false},[\"padding-left:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu li:last-child a\":false},[\"padding-right:0\"]],[false,{\".footer-nav-wrap .astra-footer-horizontal-menu a\":false},[\"padding:0 .5em\"]],[false,\"}\"],[false,{\".site-header\":false},[\"z-index:99\",\"position:relative\"]],[false,{\".main-header-container\":false},[\"position:relative\"]],[false,{\".main-header-bar-wrap\":false},[\"position:relative\"]],[false,{\".main-header-bar\":false},[\"background-color:#fff\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border:0\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".main-header-bar\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-desktop .main-header-menu.ast-menu-shadow .sub-menu\":false},[\"box-shadow:0 4px 10px -2px rgba(0,0,0,.1)\"]],[false,{\".ast-header-custom-item-inside .button-custom-menu-item .menu-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item\":false},[\"padding-left:0\",\"padding-right:0\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link\":false},[\"display:none\"]],[false,{\".ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link\":false},[\"display:block\"]],[false,{\".site-branding\":false},[\"line-height:1\",\"align-self:center\"]],[false,{\".ast-menu-toggle\":false},[\"display:none\",\"background:0 0\",\"color:inherit\",\"border-style:dotted\",\"border-color:transparent\"]],[false,{\".ast-menu-toggle:focus\":false,\".ast-menu-toggle:hover\":false},[\"background:0 0\",\"border-color:inherit\",\"color:inherit\"]],[false,{\".ast-menu-toggle:focus\":false},[\"outline:thin dotted\"]],[false,{\".ast-main-header-nav-open .main-header-bar\":false},[\"padding-bottom:0\"]],[false,{\".main-header-bar\":false},[\"z-index:4\",\"position:relative\"]],[false,{\".main-header-bar .main-header-bar-navigation:empty\":false},[\"padding:0\"]],[false,{\".main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:1.45\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after\":false},[\"line-height:normal\"]],[false,{\".custom-mobile-logo-link\":false},[\"display:none\"]],[false,{\".ast-site-identity\":false},[\"padding:1em 0\"]],[false,{\".ast-header-break-point .site-header .main-header-bar-wrap .site-branding\":false},[\"flex:1\",\"align-self:center\"]],[false,{\".ast-header-break-point .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-header-bar\":false},[\"display:block\",\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:400\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-header-break-point .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-header-break-point .main-navigation .stack-on-mobile li\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-header-break-point .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-header-break-point .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-header-break-point .main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".ast-header-break-point .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-header-break-point .ast-builder-menu\":false},[\"width:100%\"]],[false,{\".ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile\":false},[\"flex-wrap:wrap\"]],[false,{\".ast-desktop .main-header-menu>.menu-item .sub-menu:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:100%\",\"transform:translateY(-100%)\"]],[true,{\"input[type=email]\":true,\"input[type=number]\":true,\"input[type=password]\":true,\"input[type=reset]\":true,\"input[type=search]\":true,\"input[type=tel]\":true,\"input[type=text]\":true,\"input[type=url]\":true,\"select\":false,\"textarea\":false},[\"color:#666\",\"padding:.75em\",\"height:auto\",\"border-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\",\"border-radius:2px\",\"background:#fafafa\",\"box-shadow:none\",\"box-sizing:border-box\",\"transition:all .2s linear\"]],[true,{\"input[type=email]:focus\":true,\"input[type=password]:focus\":true,\"input[type=reset]:focus\":true,\"input[type=search]:focus\":true,\"input[type=tel]:focus\":true,\"input[type=text]:focus\":true,\"input[type=url]:focus\":true,\"select:focus\":false,\"textarea:focus\":false},[\"background-color:#fff\",\"border-color:#eaeaea\",\"box-shadow:none\"]],[true,{\"input[type=button]\":true,\"input[type=button]:focus\":true,\"input[type=button]:hover\":true,\"input[type=reset]\":true,\"input[type=reset]:focus\":true,\"input[type=reset]:hover\":true,\"input[type=submit]\":true,\"input[type=submit]:focus\":true,\"input[type=submit]:hover\":true},[\"box-shadow:none\"]],[false,{\"textarea\":false},[\"width:100%\"]],[true,{\"input[type=search]:focus\":true},[\"outline:thin dotted\"]],[true,{\"input[type=range]\":true},[\"-webkit-appearance:none\",\"width:100%\",\"margin:5.7px 0\",\"padding:0\",\"border:none\"]],[true,{\"input[type=range]:focus\":true},[\"outline:0\"]],[true,{\"input[type=range]::-webkit-slider-runnable-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-webkit-slider-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\",\"-webkit-appearance:none\",\"margin-top:-5.7px\"]],[true,{\"input[type=range]:focus::-webkit-slider-runnable-track\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]::-moz-range-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\",\"background:rgba(255,255,255,.2)\",\"border-radius:13.6px\",\"border:0 solid #fff\"]],[true,{\"input[type=range]::-moz-range-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]::-ms-track\":true},[\"width:100%\",\"height:8.6px\",\"cursor:pointer\",\"background:0 0\",\"border-color:transparent\",\"color:transparent\"]],[true,{\"input[type=range]::-ms-fill-lower\":true},[\"background:rgba(199,199,199,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\",\"border:0 solid #fff\",\"border-radius:27.2px\",\"box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9\"]],[true,{\"input[type=range]::-ms-thumb\":true},[\"box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37)\",\"border:7.9px solid #0274be\",\"height:20px\",\"height:8.6px\",\"width:20px\",\"border-radius:50px\",\"background:#0274be\",\"cursor:pointer\"]],[true,{\"input[type=range]:focus::-ms-fill-lower\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=range]:focus::-ms-fill-upper\":true},[\"background:rgba(255,255,255,.2)\"]],[true,{\"input[type=color]\":true},[\"border:none\",\"width:100px\",\"padding:0\",\"height:30px\",\"cursor:pointer\"]],[true,{\"input[type=color]::-webkit-color-swatch-wrapper\":true},[\"padding:0\",\"border:none\"]],[true,{\"input[type=color]::-webkit-color-swatch\":true},[\"border:none\"]],[false,{\".page .entry-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".search .entry-header\":false},[\"margin-bottom:1em\"]],[false,{\".ast-single-post .entry-header.ast-header-without-markup\":false,\".ast-single-post .entry-header.ast-no-title.ast-no-thumbnail\":false},[\"margin-bottom:0\"]],[false,{\".entry-header\":false},[\"margin-bottom:1em\",\"word-wrap:break-word\"]],[false,{\".entry-header+.ast-blog-featured-section\":false},[\"margin-top:.5em\"]],[false,{\".entry-content\":false},[\"word-wrap:break-word\"]],[false,{\".entry-content p\":false},[\"margin-bottom:1.6em\"]],[false,{\".read-more\":false},[\"margin-bottom:0\"]],[false,{\".read-more .ast-right-arrow\":false},[\"font-size:1em\"]],[false,{\".ast-no-thumb .ast-blog-featured-section\":false},[\"margin-bottom:0\"]],[false,{\".ast-no-thumb .entry-header+.ast-blog-featured-section\":false},[\"margin-top:0\"]],[false,{\".ast-blog-featured-section\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header\":false},[\"margin-bottom:1.5em\"]],[false,{\".error404 .page-header .page-title\":false},[\"margin-bottom:0\"]],[false,{\".archive .entry-title\":false,\".blog .entry-title\":false,\".search .entry-title\":false},[\"line-height:1.3\"]],[false,{\".archive .format-aside .entry-title\":false,\".archive .format-status .entry-title\":false,\".blog .format-aside .entry-title\":false,\".blog .format-status .entry-title\":false},[\"display:none\"]],[false,{\".page-title\":false},[\"margin-bottom:1em\",\"font-weight:400\"]],[false,{\".entry-title\":false},[\"margin-bottom:.2em\"]],[false,{\".ast-article-post\":false},[\"margin-bottom:2.5em\"]],[false,{\".ast-article-post:last-child\":false},[\"margin-bottom:0\",\"border-bottom:0\"]],[false,{\".search .site-content .content-area .search-form\":false},[\"margin-bottom:3em\"]],[false,{\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\",\"position:relative\"]],[false,{\".blog .posted-on\":false},[\"z-index:1\"]],[false,{\".ast-blog-featured-section .posted-on\":false},[\"width:5.714285714em\",\"height:5.714285714em\",\"padding:.7em\"]],[false,{\".ast-blog-featured-section .posted-on .date-month\":false,\".ast-blog-featured-section .posted-on .date-year\":false},[\"font-size:.8571428571em\",\"line-height:1em\"]],[false,{\".ast-blog-featured-section .posted-on .date-day\":false},[\"font-size:2.5em\",\"line-height:.9em\",\"font-weight:900\",\"margin:.1em 0\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"border-radius:50%\",\"margin:0 0 0 20px\"]],[false,{\".ast-archive-description\":false},[\"margin-bottom:2.5em\",\"padding-bottom:1.3333em\",\"border-bottom:1px solid #eee\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"margin-bottom:4px\",\"font-size:40px\",\"font-size:2.85714rem\",\"font-weight:300\"]],[false,{\".ast-archive-description p\":false},[\"margin-bottom:0\",\"font-size:20px\",\"font-size:1.42857rem\",\"line-height:1.65\",\"font-weight:300\"]],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"background-color:#eee\",\"padding-bottom:0\",\"border-bottom:0\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".ast-separate-container .ast-archive-description\":false},[\"padding:2.14em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-archive-description\":false,\".ast-separate-container .ast-author-box\":false},[\"margin:0\",\"padding:5em 6.67em 3.33333em\"]],[false,\"}\"],[false,{\".single .entry-header\":false},[\"margin-bottom:2em\"]],[false,{\".single .post-navigation\":false},[\"margin:0\",\"padding:2em 0 0\",\"border-top:1px solid #eee\"]],[false,\"@media (max-width:768px){\"],[false,{\".single .post-navigation\":false},[\"padding-top:1.5em\"]],[false,\"}\"],[false,{\".single .post-navigation a\":false},[\"margin:2px\",\"display:inline-block\",\"text-align:center\",\"color:#000\"]],[false,\"@media (min-width:421px){\"],[false,{\".single .post-navigation .nav-links\":false},[\"-js-display:flex\",\"display:flex\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"flex:auto\"]],[false,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".single .post-navigation .ast-left-arrow\":false,\".single .post-navigation .ast-right-arrow\":false},[\"display:none\"]],[false,{\".single .post-navigation .nav-next\":false,\".single .post-navigation .nav-previous\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-next a\":false,\".single .post-navigation .nav-previous a\":false},[\"width:100%\"]],[false,{\".single .post-navigation .nav-previous\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".single .entry-header .ast-single-post-order+.post-thumb amp-img\":false,\".single .entry-header .ast-single-post-order+.post-thumb amp-anim\":false},[\"margin-top:2em\",\"margin-bottom:0\"]],[false,{\".single .entry-header.ast-no-title .post-thumb+.ast-single-post-order\":false},[\"margin-top:0\"]],[false,{\".single .entry-header .post-thumb+.ast-single-post-order\":false},[\"margin-top:2em\"]],[false,{\".single .entry-header .post-thumb amp-img\":false,\".single .entry-header .post-thumb amp-anim\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".page .has-post-thumbnail .post-thumb amp-img\":false,\".page .has-post-thumbnail .post-thumb amp-anim\":false},[\"margin-bottom:1.5em\"]],[false,{\".post-password-form\":false},[\"text-align:center\"]],[false,\"@media (max-width:420px){\"],[false,{\".post-password-form input[type=password]\":false},[\"display:block\",\"margin:10px auto\"]],[false,\"}\"],[false,{\".post-password-form input[type=submit]\":false},[\"padding:10px 20px\",\"border-radius:2px\"]],[false,{\".ast-separate-container .post-navigation\":false},[\"border-top:0\",\"padding-left:3.33333em\",\"padding-right:3.33333em\"]],[false,\"@media (max-width:420px){\"],[false,{\".ast-separate-container .post-navigation\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .entry-header\":false},[\"margin-bottom:1em\"]],[false,\"}\"],[false,{\".ast-404-layout-1\":false},[\"text-align:center\",\"margin:4em auto\"]],[false,{\".ast-404-layout-1 .page-sub-title\":false},[\"font-size:1.5rem\",\"font-weight:700\"]],[false,{\".ast-404-layout-1 .widget_search\":false},[\"padding-top:.5em\"]],[false,{\".ast-404-search\":false},[\"margin-top:1.5em\"]],[false,{\".ast-404-search .widget_search\":false},[\"max-width:370px\",\"margin:0 auto\"]],[false,{\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false},[\"background-color:#fff\"]],[false,\"@media (max-width:1200px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:3.34em 2.4em\"]],[false,\"}\"],[false,\"@media (max-width:768px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 2.14em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"padding:1.5em 1em\"]],[false,\"}\"],[false,\"@media (min-width:1201px){\"],[false,{\".ast-separate-container .ast-404-layout-1\":false,\".ast-separate-container .no-results\":false},[\"margin:0\",\"padding:5.34em 6.67em\"]],[false,\"}\"],[false,{\".blog-layout-1\":false},[\"width:100%\",\"display:inline-block\",\"padding-bottom:2em\",\"vertical-align:middle\",\"border-bottom:1px solid #eee\"]],[false,{\".blog-layout-1 .posted-on\":false},[\"left:0\"]],[false,{\".blog-layout-1 .post-content\":false,\".blog-layout-1 .post-thumb\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-flex\":false},[\"-js-display:flex\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".ast-flex-1\":false},[\"flex:1\"]],[false,{\".ast-inline-flex\":false},[\"-js-display:inline-flex\",\"display:inline-flex\",\"align-items:center\",\"flex-wrap:wrap\",\"align-content:center\"]],[false,{\".ast-justify-content-flex-start\":false},[\"justify-content:flex-start\"]],[false,{\".ast-justify-content-flex-end\":false},[\"justify-content:flex-end\"]],[false,{\".ast-justify-content-center\":false},[\"justify-content:center\"]],[false,{\".ast-justify-content-space-between\":false},[\"justify-content:space-between\"]],[false,{\".ast-justify-content-space-around\":false},[\"justify-content:space-around\"]],[false,{\".ast-align-content-flex-start\":false},[\"align-content:flex-start\"]],[false,{\".ast-align-content-flex-end\":false},[\"align-content:flex-end\"]],[false,{\".ast-align-content-center\":false},[\"align-content:center\"]],[false,{\".ast-align-content-space-between\":false},[\"align-content:space-between\"]],[false,{\".ast-align-content-space-around\":false},[\"align-content:space-around\"]],[false,{\".ast-align-content-stretch\":false},[\"align-content:stretch\"]],[false,{\".ast-flex-grow-1\":false},[\"flex-grow:1\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47984,\"final_size\":2482,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"astra-theme-css-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"theme\",\"name\":\"mabar88\",\"file\":\"inc\\/core\\/class-astra-enqueue-scripts.php\",\"line\":195,\"function\":\"Astra_Enqueue_Scripts::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"html{font-size:93.75%;}a,.page-title{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;font-size:15px;font-size:1rem;}blockquote{color:var(--ast-global-color-3);}.site-title{font-size:35px;font-size:2.3333333333333rem;display:block;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.6666666666667rem;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}h1,.entry-content h1{font-size:40px;font-size:2.6666666666667rem;}h2,.entry-content h2{font-size:30px;font-size:2rem;}h3,.entry-content h3{font-size:25px;font-size:1.6666666666667rem;}h4,.entry-content h4{font-size:20px;font-size:1.3333333333333rem;}h5,.entry-content h5{font-size:18px;font-size:1.2rem;}h6,.entry-content h6{font-size:15px;font-size:1rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:2rem;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type=\\\"text\\\"]:focus,input[type=\\\"email\\\"]:focus,input[type=\\\"url\\\"]:focus,input[type=\\\"password\\\"]:focus,input[type=\\\"reset\\\"]:focus,input[type=\\\"search\\\"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type=\\\"radio\\\"]:checked,input[type=reset],input[type=\\\"checkbox\\\"]:checked,input[type=\\\"checkbox\\\"]:hover:checked,input[type=\\\"checkbox\\\"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-0);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:21px;font-size:1.4rem;color:var(--ast-global-color-2);}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:1rem;}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .wp-block-button .wp-block-button__link,.ast-single-post .elementor-button-wrapper .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .wp-block-uagb-buttons a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a{text-decoration:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}#secondary {margin: 4em 0 2.5em;word-break: break-word;line-height: 2;}#secondary li {margin-bottom: 0.25em;}#secondary li:last-child {margin-bottom: 0;}@media (max-width: 768px) {.js_active .ast-plain-container.ast-single-post #secondary {margin-top: 1.5em;}}.ast-separate-container.ast-two-container #secondary .widget {background-color: #fff;padding: 2em;margin-bottom: 2em;}@media (min-width: 993px) {.ast-left-sidebar #secondary {padding-right: 60px;}.ast-right-sidebar #secondary {padding-left: 60px;}}@media (max-width: 993px) {.ast-right-sidebar #secondary {padding-left: 30px;}.ast-left-sidebar #secondary {padding-right: 30px;}}@media (max-width:921px){#ast-desktop-header{display:none;}}@media (min-width:921px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (min-width:1200px){.wp-block-group .has-background{padding:20px;}}@media (min-width:1200px){.wp-block-cover-image.alignwide .wp-block-cover__inner-container,.wp-block-cover.alignwide .wp-block-cover__inner-container,.wp-block-cover-image.alignfull .wp-block-cover__inner-container,.wp-block-cover.alignfull .wp-block-cover__inner-container{width:100%;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}.wp-block-columns{margin-bottom:unset;}.wp-block-image.size-full{margin:2rem 0;}.wp-block-separator.has-background{padding:0;}.wp-block-gallery{margin-bottom:1.6em;}.wp-block-group{padding-top:4em;padding-bottom:4em;}.wp-block-group__inner-container .wp-block-columns:last-child,.wp-block-group__inner-container :last-child,.wp-block-table table{margin-bottom:0;}.blocks-gallery-grid{width:100%;}.wp-block-navigation-link__content{padding:5px 0;}.wp-block-group .wp-block-group .has-text-align-center,.wp-block-group .wp-block-column .has-text-align-center{max-width:100%;}.has-text-align-center{margin:0 auto;}@media (max-width:1200px){.wp-block-group{padding:3em;}.wp-block-group .wp-block-group{padding:1.5em;}.wp-block-columns,.wp-block-column{margin:1rem 0;}}@media (min-width:921px){.wp-block-columns .wp-block-group{padding:2em;}}@media (max-width:544px){.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:unset;}.wp-block-cover,.wp-block-cover-image{padding:2em 0;}.wp-block-group,.wp-block-cover{padding:2em;}.wp-block-media-text__media img,.wp-block-media-text__media video{width:unset;max-width:100%;}.wp-block-media-text.has-background .wp-block-media-text__content{padding:1em;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}@media (min-width:544px){.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding:0 8% 0 0;}.entry-content .wp-block-media-text .wp-block-media-text__content{padding:0 0 0 8%;}.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *,.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *{margin:0;}}@media (max-width:544px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding:8% 0;}.wp-block-media-text .wp-block-media-text__media img{width:auto;max-width:100%;}}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus{color:#ffffff !important;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;}@media (min-width:544px){.entry-content > .alignleft{margin-right:20px;}.entry-content > .alignright{margin-left:20px;}}h1.widget-title{font-weight:inherit;}h2.widget-title{font-weight:inherit;}h3.widget-title{font-weight:inherit;}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (max-width:921px){#secondary.secondary{padding-top:0;}.ast-separate-container.ast-right-sidebar #secondary{padding-left:1em;padding-right:1em;}.ast-separate-container.ast-two-container #secondary{padding-left:0;padding-right:0;}.ast-page-builder-template .entry-header #secondary,.ast-page-builder-template #secondary{margin-top:1.5em;}}@media (max-width:921px){.ast-right-sidebar #primary{padding-right:0;}.ast-page-builder-template.ast-left-sidebar #secondary,.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px;padding-left:20px;}.ast-right-sidebar #secondary,.ast-left-sidebar #primary{padding-left:0;}.ast-left-sidebar #secondary{padding-right:0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}@media (min-width:922px){.ast-right-sidebar #primary{border-right:1px solid #eee;}.ast-left-sidebar #primary{border-left:1px solid #eee;}.ast-right-sidebar #secondary{border-left:1px solid #eee;margin-left:-1px;}.ast-left-sidebar #secondary{border-right:1px solid #eee;margin-right:-1px;}.ast-separate-container.ast-two-container.ast-right-sidebar #secondary{padding-left:30px;padding-right:0;}.ast-separate-container.ast-two-container.ast-left-sidebar #secondary{padding-right:30px;padding-left:0;}.ast-separate-container.ast-right-sidebar #secondary,.ast-separate-container.ast-left-sidebar #secondary{border:0;margin-left:auto;margin-right:auto;}.ast-separate-container.ast-two-container #secondary .widget:last-child{margin-bottom:0;}}.wp-block-button .wp-block-button__link{color:#ffffff;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link{border-style:solid;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:inherit;line-height:1;border-radius:2px;}.wp-block-buttons .wp-block-button .wp-block-button__link{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.wp-block-button .wp-block-button__link{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"],form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);border-radius:2px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:inherit;line-height:1;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type=\\\"button\\\"]:hover,input[type=\\\"button\\\"]:focus,input[type=\\\"submit\\\"]:hover,input[type=\\\"submit\\\"]:focus,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 1em;margin-bottom:1.5em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}.ast-separate-container #secondary{padding-top:0;}.ast-separate-container.ast-two-container #secondary .widget{margin-bottom:1.5em;padding-left:1em;padding-right:1em;}}@media (max-width:921px){.menu-toggle,button,.ast-button,.button,input#submit,input[type=\\\"button\\\"],input[type=\\\"submit\\\"],input[type=\\\"reset\\\"]{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-media-text,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns{max-width:58em;width:calc(100% - 4em);margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > .alignfull{max-width:100%;margin-left:0;margin-right:0;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){margin-left:auto;margin-right:auto;}.entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(iframe){max-width:50rem;width:100%;}@media (min-width:921px){.entry-content > .wp-block-group.alignwide.has-background,.entry-content > .wp-block-group.alignfull.has-background,.entry-content > .wp-block-cover.alignwide,.entry-content > .wp-block-cover.alignfull,.entry-content > .wp-block-columns.has-background.alignwide,.entry-content > .wp-block-columns.has-background.alignfull{margin-top:0;margin-bottom:0;padding:6em 4em;}.entry-content > .wp-block-columns.has-background{margin-bottom:0;}}@media (min-width:1200px){.entry-content .alignfull p{max-width:1200px;}.entry-content .alignfull{max-width:100%;width:100%;}.ast-page-builder-template .entry-content .alignwide,.entry-content [class*=\\\"__inner-container\\\"] > .alignwide{max-width:1200px;margin-left:0;margin-right:0;}.entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide{max-width:80rem;}}@media (min-width:545px){.site-main .entry-content > .alignwide{margin:0 auto;}.wp-block-group.has-background,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns.has-background{padding:4em;margin-top:0;margin-bottom:0;}.entry-content .wp-block-media-text.alignfull .wp-block-media-text__content,.entry-content .wp-block-media-text.has-background .wp-block-media-text__content{padding:0 8%;}}@media (max-width:921px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.site-title{display:block;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{display:none;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.wp-block-search {margin-bottom: 20px;}.wp-block-site-tagline {margin-top: 20px;}form.wp-block-search .wp-block-search__input,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {border-color: #eaeaea;background: #fafafa;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus,.wp-block-loginout input:focus {outline: thin dotted;}.wp-block-loginout input:focus {border-color: transparent;} form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {padding: 12px;}form.wp-block-search .wp-block-search__button svg {fill: currentColor;width: 20px;height: 20px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}body .wp-block-file .wp-block-file__button {text-decoration: none;}blockquote {padding: 0 1.2em 1.2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: \\\"\\\\201D\\\";font-family: \\\"Helvetica\\\",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}ul.wp-block-categories-list.wp-block-categories,ul.wp-block-archives-list.wp-block-archives {list-style-type: none;}.wp-block-button__link {border: 2px solid currentColor;}ul,ol {margin-left: 20px;}figure.alignright figcaption {text-align: right;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#F2F5F7;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\\\"\\\\00bb\\\";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 \\/ -1;}}.ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]{display:flex;}}.ast-builder-menu-1{font-family:inherit;font-weight:inherit;}.ast-builder-menu-1 .sub-menu,.ast-builder-menu-1 .inline-on-mobile .sub-menu{border-top-width:2px;border-bottom-width:0px;border-right-width:0px;border-left-width:0px;border-color:var(--ast-global-color-0);border-style:solid;border-radius:0px;}.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu,.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper{margin-top:0px;}.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before,.ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before{height:calc( 0px + 5px );}.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link{border-style:none;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-1 .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-1{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1{display:flex;}}.site-below-footer-wrap{padding-top:20px;padding-bottom:20px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{background-color:#eeeeee;;min-height:80px;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row{max-width:1200px;margin-left:auto;margin-right:auto;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row,.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section{align-items:flex-start;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section{display:flex;margin-bottom:0;}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr;}@media (max-width:921px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row{grid-template-columns:1fr;}}@media (max-width:544px){.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section{display:flex;margin-bottom:0;}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section{display:block;margin-bottom:10px;}.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row{grid-template-columns:1fr;}}.site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}@media (max-width:921px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}@media (max-width:544px){.ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]{display:grid;}}.ast-footer-copyright{text-align:center;}.ast-footer-copyright {color:var(--ast-global-color-3);}@media (max-width:921px){.ast-footer-copyright{text-align:center;}}@media (max-width:544px){.ast-footer-copyright{text-align:center;}}.ast-footer-copyright.ast-builder-layout-element{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-footer-copyright.ast-builder-layout-element{display:flex;}}@media (max-width:921px){#ast-desktop-header{display:none;}#ast-mobile-header{display:block;}.ast-amp.ast-main-header-nav-open .ast-mobile-header-content{display:block;}.ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border:0;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .ast-below-header-bar, .ast-amp .main-header-bar, .ast-amp .ast-above-header-bar{display:grid;}}@media (max-width:921px){.site-header .main-header-bar-wrap .site-branding{display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation{display:block;}.main-navigation{display:block;width:100%;}.main-header-menu > .menu-item > .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-main-header-bar-alignment.toggle-on{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.main-header-menu .menu-item{width:100%;text-align:left;border-top:0;}.main-header-bar-navigation{width:calc( 100% + 40px);margin:0 -20px;}.main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;-webkit-transition:all .2s;transition:all .2s;}}@media (max-width:921px){.ast-amp .main-header-bar-navigation{margin:0;}}@media (max-width:921px){.ast-amp .entry-content .alignwide{margin-left:auto;margin-right:auto;}.ast-amp .main-navigation{display:block;width:100%;}.ast-amp .main-navigation ul .menu-item .menu-link, .ast-amp .main-navigation ul .button-custom-menu-item a{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px;}.ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px;}.ast-amp .main-header-menu{background-color:#f9f9f9;}.ast-amp .main-header-menu ul{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto;}.ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul, .ast-amp .main-header-menu ul li.ast-left-align-sub-menu.focus > ul{left:0;}.ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul, .ast-amp .main-header-menu li.ast-sub-menu-goes-outside.focus > ul{left:0;}.ast-amp .submenu-with-border .sub-menu{border:0;}.ast-amp .user-select{clear:both;}.ast-amp .ast-mobile-menu-buttons{text-align:right;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}.ast-amp .main-header-bar-navigation{-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;width:calc(100% + 40px );}.ast-amp .ast-main-header-bar-alignment{display:block;width:100%;-webkit-box-flex:1;-webkit-flex:auto;-moz-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:5;-webkit-order:4;-moz-box-ordinal-group:5;-ms-flex-order:4;order:4;}.ast-amp .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.ast-amp .ast-site-identity{width:100%;}.ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after{display:none;}.ast-amp .main-header-bar{border:0;border-bottom-color:#eaeaea;border-bottom-style:solid;}.ast-main-header-bar-alignment .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .toggled-on .main-header-bar-navigation{line-height:3;display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu{display:block;}.ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale;padding:0 0.907em;font-weight:normal;line-height:inherit;transition:all 0.2s;}.ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg);}.ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea;}.ast-amp .main-navigation ul > li:first-child{border-top:0;}.ast-amp .main-navigation ul ul{left:auto;right:auto;}.ast-amp .main-navigation li{width:100%;}.ast-amp .main-navigation .widget{margin-bottom:1em;}.ast-amp .main-navigation .widget li{width:auto;}.ast-amp .main-navigation .widget:last-child{margin-bottom:0;}.ast-amp .main-header-menu ul ul{top:0;}.ast-amp .ast-has-mobile-header-logo .custom-logo-link, .ast-amp .ast-has-mobile-header-logo .astra-logo-svg{display:none;}.ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block;}.ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, .ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg{display:block;}.ast-amp .ast-header-widget-area .widget{margin:0.5em 0;display:block;}.ast-amp .nav-fallback-text{float:none;}.ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left;}.ast-amp #ast-site-header-cart .widget_shopping_cart{display:none;}.ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0;}.ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget, .ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap{display:none;}.ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item{padding:0;}.ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:0;}.ast-amp .main-header-menu .sub-menu{box-shadow:none;}.ast-amp .submenu-with-border .sub-menu a{border-width:1px;}.ast-amp .submenu-with-border .sub-menu > li:last-child > a{border-width:1px;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal{background:transparent;border:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}@media (min-width:922px){#primary{width:70%;}#secondary{width:30%;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);}.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-post{background-color:var(--ast-global-color-5);;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .comments-area .comment-respond,.ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .comments-area .comments-title{background-color:var(--ast-global-color-5);;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-5);;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:70px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:70px;}@media (max-width:921px){#masthead .ast-mobile-header-wrap .ast-primary-header-bar,#masthead .ast-mobile-header-wrap .ast-below-header-bar{padding-left:20px;padding-right:20px;}}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:#eaeaea;border-bottom-style:solid;}}.ast-primary-header-bar{background-color:#ffffff;;}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link{font-family:inherit;font-weight:inherit;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}\",\"handle\":\"astra-theme-css\"}],\"priority\":2,\"hash\":\"6259912a70dafc4e2779e0ccd1d6ad3a\",\"parse_time\":0.06859898567199707,\"shake_time\":0.0007569789886474609,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html\":true},[\"font-size:93.75%\"]],[true,{\"a\":true,\".page-title\":false},[\"color:var(--ast-global-color-0)\"]],[true,{\"a:hover\":true,\"a:focus\":true},[\"color:var(--ast-global-color-1)\"]],[true,{\"body\":true,\"button\":false,\"input\":true,\"select\":false,\"textarea\":false,\".ast-button\":false,\".ast-custom-button\":false},[\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-weight:inherit\",\"font-size:15px\",\"font-size:1rem\"]],[false,{\"blockquote\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".site-title\":false},[\"font-size:35px\",\"font-size:2.3333333333333rem\",\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[false,{\".site-header .site-description\":false},[\"font-size:15px\",\"font-size:1rem\",\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:40px\",\"font-size:2.6666666666667rem\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:30px\",\"font-size:2rem\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:25px\",\"font-size:1.6666666666667rem\"]],[false,{\"h4\":false,\".entry-content h4\":false},[\"font-size:20px\",\"font-size:1.3333333333333rem\"]],[false,{\"h5\":false,\".entry-content h5\":false},[\"font-size:18px\",\"font-size:1.2rem\"]],[false,{\"h6\":false,\".entry-content h6\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\",\"font-size:2rem\"]],[true,{\"::selection\":true},[\"background-color:var(--ast-global-color-0)\",\"color:#fff\"]],[true,{\"body\":true,\"h1\":true,\".entry-title a\":false,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\".tagcloud a:hover\":false,\".tagcloud a:focus\":false,\".tagcloud a.current-item\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\"]],[true,{\"input:focus\":true,\"input[type=\\\"text\\\"]:focus\":true,\"input[type=\\\"email\\\"]:focus\":true,\"input[type=\\\"url\\\"]:focus\":true,\"input[type=\\\"password\\\"]:focus\":true,\"input[type=\\\"reset\\\"]:focus\":true,\"input[type=\\\"search\\\"]:focus\":true,\"textarea:focus\":false},[\"border-color:var(--ast-global-color-0)\"]],[true,{\"input[type=\\\"radio\\\"]:checked\":true,\"input[type=reset]\":true,\"input[type=\\\"checkbox\\\"]:checked\":true,\"input[type=\\\"checkbox\\\"]:hover:checked\":true,\"input[type=\\\"checkbox\\\"]:focus:checked\":true,\"input[type=range]::-webkit-slider-thumb\":true},[\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"box-shadow:none\"]],[false,{\".site-footer a:hover + .post-count\":false,\".site-footer a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".single .nav-links .nav-previous\":false,\".single .nav-links .nav-next\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta\":false,\".entry-meta *\":false},[\"line-height:1.45\",\"color:var(--ast-global-color-0)\"]],[false,{\".entry-meta a:hover\":false,\".entry-meta a:hover *\":false,\".entry-meta a:focus\":false,\".entry-meta a:focus *\":false,\".page-links > .page-link\":false,\".page-links .page-link:hover\":false,\".post-navigation a:hover\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\"#cat option\":false,\".secondary .calendar_wrap thead a\":false,\".secondary .calendar_wrap thead a:visited\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".secondary .calendar_wrap #today\":false,\".ast-progress-val span\":false},[\"background:var(--ast-global-color-0)\"]],[false,{\".secondary a:hover + .post-count\":false,\".secondary a:focus + .post-count\":false},[\"background:var(--ast-global-color-0)\",\"border-color:var(--ast-global-color-0)\"]],[false,{\".calendar_wrap #today > a\":false},[\"color:#fff\"]],[false,{\".page-links .page-link\":false,\".single .post-navigation a\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-archive-title\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".widget-title\":false},[\"font-size:21px\",\"font-size:1.4rem\",\"color:var(--ast-global-color-2)\"]],[false,{\"#secondary\":false,\"#secondary button\":false,\"#secondary input\":false,\"#secondary select\":false,\"#secondary textarea\":false},[\"font-size:15px\",\"font-size:1rem\"]],[false,{\".ast-single-post .entry-content a\":false,\".ast-comment-content a:not(.ast-comment-edit-reply-wrap a)\":false},[\"text-decoration:underline\"]],[false,{\".ast-single-post .wp-block-button .wp-block-button__link\":false,\".ast-single-post .elementor-button-wrapper .elementor-button\":false,\".ast-single-post .entry-content .uagb-tab a\":false,\".ast-single-post .entry-content .uagb-ifb-cta a\":false,\".ast-single-post .entry-content .wp-block-uagb-buttons a\":false,\".ast-single-post .entry-content .uabb-module-content a\":false,\".ast-single-post .entry-content .uagb-post-grid a\":false,\".ast-single-post .entry-content .uagb-timeline a\":false,\".ast-single-post .entry-content .uagb-toc__wrap a\":false,\".ast-single-post .entry-content .uagb-taxomony-box a\":false,\".ast-single-post .entry-content .woocommerce a\":false},[\"text-decoration:none\"]],[false,{\".ast-logo-title-inline .site-logo-img\":false},[\"padding-right:1em\"]],[false,{\"#secondary\":false},[\"margin:4em 0 2.5em\",\"word-break:break-word\",\"line-height:2\"]],[false,{\"#secondary li\":false},[\"margin-bottom:.25em\"]],[false,{\"#secondary li:last-child\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".js_active .ast-plain-container.ast-single-post #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"background-color:#fff\",\"padding:2em\",\"margin-bottom:2em\"]],[false,\"@media (min-width: 993px){\"],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:60px\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:60px\"]],[false,\"}\"],[false,\"@media (max-width: 993px){\"],[false,{\".ast-right-sidebar #secondary\":false},[\"padding-left:30px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:30px\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\"#ast-mobile-header\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-buttons.aligncenter\":false},[\"justify-content:center\"]],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-group .has-background\":false},[\"padding:20px\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".wp-block-cover-image.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover.alignwide .wp-block-cover__inner-container\":false,\".wp-block-cover-image.alignfull .wp-block-cover__inner-container\":false,\".wp-block-cover.alignfull .wp-block-cover__inner-container\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-theme-transparent-header #primary\":false,\".ast-theme-transparent-header #secondary\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".wp-block-columns\":false},[\"margin-bottom:unset\"]],[false,{\".wp-block-image.size-full\":false},[\"margin:2rem 0\"]],[false,{\".wp-block-separator.has-background\":false},[\"padding:0\"]],[false,{\".wp-block-gallery\":false},[\"margin-bottom:1.6em\"]],[false,{\".wp-block-group\":false},[\"padding-top:4em\",\"padding-bottom:4em\"]],[false,{\".wp-block-group__inner-container .wp-block-columns:last-child\":false,\".wp-block-group__inner-container :last-child\":false,\".wp-block-table table\":false},[\"margin-bottom:0\"]],[false,{\".blocks-gallery-grid\":false},[\"width:100%\"]],[false,{\".wp-block-navigation-link__content\":false},[\"padding:5px 0\"]],[false,{\".wp-block-group .wp-block-group .has-text-align-center\":false,\".wp-block-group .wp-block-column .has-text-align-center\":false},[\"max-width:100%\"]],[false,{\".has-text-align-center\":false},[\"margin:0 auto\"]],[false,\"@media (max-width:1200px){\"],[false,{\".wp-block-group\":false},[\"padding:3em\"]],[false,{\".wp-block-group .wp-block-group\":false},[\"padding:1.5em\"]],[false,{\".wp-block-columns\":false,\".wp-block-column\":false},[\"margin:1rem 0\"]],[false,\"}\"],[false,\"@media (min-width:921px){\"],[false,{\".wp-block-columns .wp-block-group\":false},[\"padding:2em\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:unset\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"padding:2em 0\"]],[false,{\".wp-block-group\":false,\".wp-block-cover\":false},[\"padding:2em\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"width:unset\",\"max-width:100%\"]],[false,{\".wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:1em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container.ast-no-sidebar #primary\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (min-width:544px){\"],[false,{\".entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"padding:0 8% 0 0\"]],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:0 0 0 8%\"]],[false,{\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right > *\":false,\".ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left > *\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".entry-content .wp-block-media-text .wp-block-media-text__content\":false},[\"padding:8% 0\"]],[false,{\".wp-block-media-text .wp-block-media-text__media amp-img\":false,\".wp-block-media-text .wp-block-media-text__media amp-anim\":false},[\"width:auto\",\"max-width:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-outline .wp-block-button__link\":false},[\"border-color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus\":false},[\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button.is-style-outline .wp-block-button__link:hover:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button.is-style-outline .wp-block-button__link:focus:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".post-page-numbers.current .page-link\":false,\".ast-pagination .page-numbers.current\":false},[\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\"]],[false,\"@media (min-width:544px){\"],[false,{\".entry-content > .alignleft\":false},[\"margin-right:20px\"]],[false,{\".entry-content > .alignright\":false},[\"margin-left:20px\"]],[false,\"}\"],[false,{\"h1.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h2.widget-title\":false},[\"font-weight:inherit\"]],[false,{\"h3.widget-title\":false},[\"font-weight:inherit\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container #primary\":false,\".ast-separate-container #secondary\":false},[\"padding:1.5em 0\"]],[false,{\"#primary\":false,\"#secondary\":false},[\"padding:1.5em 0\",\"margin:0\"]],[false,{\".ast-left-sidebar #content > .ast-container\":false},[\"display:flex\",\"flex-direction:column-reverse\",\"width:100%\"]],[false,{\".ast-author-box amp-img.avatar\":false,\".ast-author-box amp-anim.avatar\":false},[\"margin:20px 0 0 0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#secondary.secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".ast-separate-container.ast-two-container #secondary\":false},[\"padding-left:0\",\"padding-right:0\"]],[false,{\".ast-page-builder-template .entry-header #secondary\":false,\".ast-page-builder-template #secondary\":false},[\"margin-top:1.5em\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"padding-right:0\"]],[false,{\".ast-page-builder-template.ast-left-sidebar #secondary\":false,\".ast-page-builder-template.ast-right-sidebar #secondary\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,{\".ast-right-sidebar #secondary\":false,\".ast-left-sidebar #primary\":false},[\"padding-left:0\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-separate-container.ast-right-sidebar #primary\":false,\".ast-separate-container.ast-left-sidebar #primary\":false},[\"border:0\"]],[false,{\".search-no-results.ast-separate-container #primary\":false},[\"margin-bottom:4em\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-right-sidebar #primary\":false},[\"border-right:1px solid #eee\"]],[false,{\".ast-left-sidebar #primary\":false},[\"border-left:1px solid #eee\"]],[false,{\".ast-right-sidebar #secondary\":false},[\"border-left:1px solid #eee\",\"margin-left:-1px\"]],[false,{\".ast-left-sidebar #secondary\":false},[\"border-right:1px solid #eee\",\"margin-right:-1px\"]],[false,{\".ast-separate-container.ast-two-container.ast-right-sidebar #secondary\":false},[\"padding-left:30px\",\"padding-right:0\"]],[false,{\".ast-separate-container.ast-two-container.ast-left-sidebar #secondary\":false},[\"padding-right:30px\",\"padding-left:0\"]],[false,{\".ast-separate-container.ast-right-sidebar #secondary\":false,\".ast-separate-container.ast-left-sidebar #secondary\":false},[\"border:0\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget:last-child\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"color:#fff\"]],[false,{\".wp-block-button .wp-block-button__link:hover\":false,\".wp-block-button .wp-block-button__link:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,{\".wp-block-button .wp-block-button__link\":false},[\"border-style:solid\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"color:#fff\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\",\"border-radius:2px\"]],[false,{\".wp-block-buttons .wp-block-button .wp-block-button__link\":false},[\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\"]],[false,\"@media (max-width:921px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".wp-block-button .wp-block-button__link\":false},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,\"}\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".ast-custom-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button\":false,\"body .wp-block-file .wp-block-file__button\":false},[\"border-style:solid\",\"border-top-width:0\",\"border-right-width:0\",\"border-left-width:0\",\"border-bottom-width:0\",\"color:#fff\",\"border-color:var(--ast-global-color-0)\",\"background-color:var(--ast-global-color-0)\",\"border-radius:2px\",\"padding-top:15px\",\"padding-right:30px\",\"padding-bottom:15px\",\"padding-left:30px\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:1\"]],[true,{\"button:focus\":false,\".menu-toggle:hover\":false,\"button:hover\":false,\".ast-button:hover\":false,\".ast-custom-button:hover .button:hover\":false,\".ast-custom-button:hover\":false,\"input[type=reset]:hover\":true,\"input[type=reset]:focus\":true,\"input#submit:hover\":false,\"input#submit:focus\":false,\"input[type=\\\"button\\\"]:hover\":true,\"input[type=\\\"button\\\"]:focus\":true,\"input[type=\\\"submit\\\"]:hover\":true,\"input[type=\\\"submit\\\"]:focus\":true,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover\":false,\"form[CLASS*=\\\"wp-block-search__\\\"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus\":false,\"body .wp-block-file .wp-block-file__button:hover\":false,\"body .wp-block-file .wp-block-file__button:focus\":false},[\"color:#fff\",\"background-color:var(--ast-global-color-1)\",\"border-color:var(--ast-global-color-1)\"]],[false,\"@media (min-width:544px){\"],[false,{\".ast-container\":false},[\"max-width:100%\"]],[false,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false,\".ast-separate-container .ast-article-single\":false,\".ast-separate-container .comments-title\":false,\".ast-separate-container .ast-archive-description\":false},[\"padding:1.5em 1em\"]],[false,{\".ast-separate-container #content .ast-container\":false},[\"padding-left:.54em\",\"padding-right:.54em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 1em\",\"margin-bottom:1.5em\"]],[false,{\".ast-separate-container .ast-comment-list .bypostauthor\":false},[\"padding:.5em\"]],[false,{\".ast-search-menu-icon.ast-dropdown-active .search-field\":false},[\"width:170px\"]],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:12px\",\"padding-right:24px\",\"padding-bottom:12px\",\"padding-left:24px\"]],[false,{\".ast-separate-container #secondary\":false},[\"padding-top:0\"]],[false,{\".ast-separate-container.ast-two-container #secondary .widget\":false},[\"margin-bottom:1.5em\",\"padding-left:1em\",\"padding-right:1em\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\".menu-toggle\":false,\"button\":false,\".ast-button\":false,\".button\":false,\"input#submit\":false,\"input[type=\\\"button\\\"]\":true,\"input[type=\\\"submit\\\"]\":true,\"input[type=\\\"reset\\\"]\":true},[\"padding-top:14px\",\"padding-right:28px\",\"padding-bottom:14px\",\"padding-left:28px\"]],[false,{\".ast-mobile-header-stack .main-header-bar .ast-search-menu-icon\":false},[\"display:inline-block\"]],[false,{\".ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon\":false},[\"margin:0\"]],[false,{\".ast-comment-avatar-wrap amp-img\":false,\".ast-comment-avatar-wrap amp-anim\":false},[\"max-width:2.5em\"]],[false,{\".ast-separate-container .ast-comment-list li.depth-1\":false},[\"padding:1.5em 2.14em\"]],[false,{\".ast-separate-container .comment-respond\":false},[\"padding:2em 2.14em\"]],[false,{\".ast-comment-meta\":false},[\"padding:0 1.8888em 1.3333em\"]],[true,\"}\"],[false,{\".entry-content > .wp-block-group\":false,\".entry-content > .wp-block-media-text\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns\":false},[\"max-width:58em\",\"width:calc(100% - 4em)\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > .alignfull\":false},[\"max-width:100%\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".entry-content [class*=\\\"__inner-container\\\"] > *:not(.alignwide):not(p):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(amp-iframe)\":false},[\"max-width:50rem\",\"width:100%\"]],[false,\"@media (min-width:921px){\"],[false,{\".entry-content > .wp-block-group.alignwide.has-background\":false,\".entry-content > .wp-block-group.alignfull.has-background\":false,\".entry-content > .wp-block-cover.alignwide\":false,\".entry-content > .wp-block-cover.alignfull\":false,\".entry-content > .wp-block-columns.has-background.alignwide\":false,\".entry-content > .wp-block-columns.has-background.alignfull\":false},[\"margin-top:0\",\"margin-bottom:0\",\"padding:6em 4em\"]],[false,{\".entry-content > .wp-block-columns.has-background\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".entry-content .alignfull p\":false},[\"max-width:1200px\"]],[false,{\".entry-content .alignfull\":false},[\"max-width:100%\",\"width:100%\"]],[false,{\".ast-page-builder-template .entry-content .alignwide\":false,\".entry-content [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:1200px\",\"margin-left:0\",\"margin-right:0\"]],[false,{\".entry-content .alignfull [class*=\\\"__inner-container\\\"] > .alignwide\":false},[\"max-width:80rem\"]],[false,\"}\"],[false,\"@media (min-width:545px){\"],[false,{\".site-main .entry-content > .alignwide\":false},[\"margin:0 auto\"]],[false,{\".wp-block-group.has-background\":false,\".entry-content > .wp-block-cover\":false,\".entry-content > .wp-block-columns.has-background\":false},[\"padding:4em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".entry-content .wp-block-media-text.alignfull .wp-block-media-text__content\":false,\".entry-content .wp-block-media-text.has-background .wp-block-media-text__content\":false},[\"padding:0 8%\"]],[false,\"}\"],[true,\"@media (max-width:921px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[false,{\".site-title\":false},[\"display:block\"]],[false,{\".ast-archive-description .ast-archive-title\":false},[\"font-size:40px\"]],[false,{\".site-header .site-description\":false},[\"display:none\"]],[false,{\".entry-title\":false},[\"font-size:30px\"]],[true,{\"h1\":true,\".entry-content h1\":false},[\"font-size:30px\"]],[true,{\"h2\":true,\".entry-content h2\":false},[\"font-size:25px\"]],[false,{\"h3\":false,\".entry-content h3\":false},[\"font-size:20px\"]],[false,{\".ast-single-post .entry-title\":false,\".page-title\":false},[\"font-size:30px\"]],[true,\"}\"],[true,\"@media (max-width:921px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[true,\"@media (max-width:544px){\"],[true,{\"html\":true},[\"font-size:85.5%\"]],[true,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".ast-container\":false},[\"max-width:1240px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".site-content .ast-container\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-content .ast-container\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu\":false,\".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:focus-within > .sub-menu\":false},[\"margin-left:-0px\"]],[false,\"}\"],[false,{\".wp-block-search\":false},[\"margin-bottom:20px\"]],[false,{\".wp-block-site-tagline\":false},[\"margin-top:20px\"]],[false,{\"form.wp-block-search .wp-block-search__input\":false,\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"border-color:#eaeaea\",\"background:#fafafa\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false,\".wp-block-loginout input:focus\":false},[\"outline:thin dotted\"]],[false,{\".wp-block-loginout input:focus\":false},[\"border-color:transparent\"]],[false,{\"form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"padding:12px\"]],[false,{\"form.wp-block-search .wp-block-search__button svg\":false},[\"fill:currentColor\",\"width:20px\",\"height:20px\"]],[false,{\".wp-block-loginout p label\":false},[\"display:block\"]],[false,{\".wp-block-loginout p:not(.login-remember):not(.login-submit) input\":false},[\"width:100%\"]],[false,{\".wp-block-loginout .login-remember input\":false},[\"width:1.1rem\",\"height:1.1rem\",\"margin:0 5px 4px 0\",\"vertical-align:middle\"]],[false,{\"body .wp-block-file .wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\"blockquote\":false},[\"padding:0 1.2em 1.2em\"]],[false,{\".wp-block-file\":false},[\"display:flex\",\"align-items:center\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".wp-block-pullquote\":false},[\"border:none\"]],[false,{\".wp-block-pullquote blockquote::before\":false},[\"content:\\\"\\u201d\\\"\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"display:flex\",\"transform:rotate(180deg)\",\"font-size:6rem\",\"font-style:normal\",\"line-height:1\",\"font-weight:bold\",\"align-items:center\",\"justify-content:center\"]],[false,{\"figure.wp-block-pullquote.is-style-solid-color blockquote\":false},[\"max-width:100%\",\"text-align:inherit\"]],[false,{\"ul.wp-block-categories-list.wp-block-categories\":false,\"ul.wp-block-archives-list.wp-block-archives\":false},[\"list-style-type:none\"]],[false,{\".wp-block-button__link\":false},[\"border:2px solid currentColor\"]],[true,{\"ul\":true,\"ol\":true},[\"margin-left:20px\"]],[false,{\"figure.alignright figcaption\":false},[\"text-align:right\"]],[false,{\":root .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-color\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\":root .wp-block-button .has-ast-global-color-0-background-color\":false},[\"background-color:var(--ast-global-color-0)\"]],[false,{\":root .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-color\":false},[\"color:var(--ast-global-color-1)\"]],[false,{\":root .wp-block-button .has-ast-global-color-1-background-color\":false},[\"background-color:var(--ast-global-color-1)\"]],[false,{\":root .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-color\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\":root .wp-block-button .has-ast-global-color-2-background-color\":false},[\"background-color:var(--ast-global-color-2)\"]],[false,{\":root .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-color\":false},[\"color:var(--ast-global-color-3)\"]],[false,{\":root .wp-block-button .has-ast-global-color-3-background-color\":false},[\"background-color:var(--ast-global-color-3)\"]],[false,{\":root .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-color\":false},[\"color:var(--ast-global-color-4)\"]],[false,{\":root .wp-block-button .has-ast-global-color-4-background-color\":false},[\"background-color:var(--ast-global-color-4)\"]],[false,{\":root .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-color\":false},[\"color:var(--ast-global-color-5)\"]],[false,{\":root .wp-block-button .has-ast-global-color-5-background-color\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,{\":root .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-color\":false},[\"color:var(--ast-global-color-6)\"]],[false,{\":root .wp-block-button .has-ast-global-color-6-background-color\":false},[\"background-color:var(--ast-global-color-6)\"]],[false,{\":root .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-color\":false},[\"color:var(--ast-global-color-7)\"]],[false,{\":root .wp-block-button .has-ast-global-color-7-background-color\":false},[\"background-color:var(--ast-global-color-7)\"]],[false,{\":root .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-color\":false},[\"color:var(--ast-global-color-8)\"]],[false,{\":root .wp-block-button .has-ast-global-color-8-background-color\":false},[\"background-color:var(--ast-global-color-8)\"]],[true,{\":root\":true},[\"--ast-global-color-0:#0170b9\",\"--ast-global-color-1:#3a3a3a\",\"--ast-global-color-2:#3a3a3a\",\"--ast-global-color-3:#4b4f58\",\"--ast-global-color-4:#f5f5f5\",\"--ast-global-color-5:#fff\",\"--ast-global-color-6:#f2f5f7\",\"--ast-global-color-7:#424242\",\"--ast-global-color-8:#000\"]],[false,{\".ast-breadcrumbs .trail-browse\":false,\".ast-breadcrumbs .trail-items\":false,\".ast-breadcrumbs .trail-items li\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\",\"border:none\",\"background:inherit\",\"text-indent:0\"]],[false,{\".ast-breadcrumbs .trail-browse\":false},[\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"color:inherit\"]],[false,{\".ast-breadcrumbs .trail-items\":false},[\"list-style:none\"]],[false,{\".trail-items li::after\":false},[\"padding:0 .3em\",\"content:\\\"\\u00bb\\\"\"]],[false,{\".trail-items li:last-of-type::after\":false},[\"display:none\"]],[true,{\"h1\":true,\".entry-content h1\":false,\"h2\":true,\".entry-content h2\":false,\"h3\":false,\".entry-content h3\":false,\"h4\":false,\".entry-content h4\":false,\"h5\":false,\".entry-content h5\":false,\"h6\":false,\".entry-content h6\":false},[\"color:var(--ast-global-color-2)\"]],[false,{\".entry-title a\":false},[\"color:var(--ast-global-color-2)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child\":false,\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child\":false},[\"grid-column:1\\/-1\"]],[false,\"}\"],[false,{\".ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-layout-element[data-section=\\\"title_tagline\\\"]\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-1 .sub-menu\":false,\".ast-builder-menu-1 .inline-on-mobile .sub-menu\":false},[\"border-top-width:2px\",\"border-bottom-width:0px\",\"border-right-width:0px\",\"border-left-width:0px\",\"border-color:var(--ast-global-color-0)\",\"border-style:solid\",\"border-radius:0px\"]],[false,{\".ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu\":false,\".ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper\":false},[\"margin-top:0px\"]],[false,{\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu:before\":false,\".ast-desktop .ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper:before\":false},[\"height:calc(0px + 5px)\"]],[false,{\".ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-1 .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-1\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".site-below-footer-wrap\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"background-color:#eee\",\"min-height:80px\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false},[\"max-width:1200px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .ast-builder-grid-row\":false,\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"] .site-footer-section\":false},[\"align-items:flex-start\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".ast-builder-grid-row-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"@media (max-width:921px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-tablet-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-inline .site-footer-section\":false},[\"display:flex\",\"margin-bottom:0\"]],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"].ast-footer-row-mobile-stack .site-footer-section\":false},[\"display:block\",\"margin-bottom:10px\"]],[false,{\".ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .site-below-footer-wrap[data-section=\\\"section-below-footer-builder\\\"]\":false},[\"display:grid\"]],[false,\"}\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,{\".ast-footer-copyright\":false},[\"color:var(--ast-global-color-3)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-footer-copyright\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-footer-copyright.ast-builder-layout-element\":false},[\"display:flex\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\"#ast-desktop-header\":false},[\"display:none\"]],[false,{\"#ast-mobile-header\":false},[\"display:block\"]],[false,{\".ast-amp.ast-main-header-nav-open .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-mobile-header-content .ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-navigation ul .menu-item .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border:0\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-mobile-header-content .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .ast-mobile-header-content .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .ast-below-header-bar\":false,\".ast-amp .main-header-bar\":false,\".ast-amp .ast-above-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".site-header .main-header-bar-wrap .site-branding\":false},[\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-main-header-bar-alignment.toggle-on .main-header-bar-navigation\":false},[\"display:block\"]],[false,{\".main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-main-header-bar-alignment.toggle-on\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".main-header-menu .menu-item\":false},[\"width:100%\",\"text-align:left\",\"border-top:0\"]],[false,{\".main-header-bar-navigation\":false},[\"width:calc(100% + 40px)\",\"margin:0 -20px\"]],[false,{\".main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"-webkit-transition:all .2s\",\"transition:all .2s\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:921px){\"],[false,{\".ast-amp .entry-content .alignwide\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".ast-amp .main-navigation\":false},[\"display:block\",\"width:100%\"]],[false,{\".ast-amp .main-navigation ul .menu-item .menu-link\":false,\".ast-amp .main-navigation ul .button-custom-menu-item a\":false},[\"padding:0 20px\",\"display:inline-block\",\"width:100%\",\"border-bottom-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-amp .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link\":false},[\"padding-left:60px\"]],[false,{\".ast-amp .main-header-menu\":false},[\"background-color:#f9f9f9\"]],[false,{\".ast-amp .main-header-menu ul\":false},[\"background-color:#f9f9f9\",\"position:static\",\"opacity:1\",\"visibility:visible\",\"border:0\",\"width:auto\"]],[false,{\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:hover > ul\":false,\".ast-amp .main-header-menu ul li.ast-left-align-sub-menu:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:hover > ul\":false,\".ast-amp .main-header-menu li.ast-sub-menu-goes-outside:focus-within > ul\":false},[\"left:0\"]],[false,{\".ast-amp .submenu-with-border .sub-menu\":false},[\"border:0\"]],[false,{\".ast-amp .user-select\":false},[\"clear:both\"]],[false,{\".ast-amp .ast-mobile-menu-buttons\":false},[\"text-align:right\",\"display:flex\",\"-webkit-box-pack:end\",\"-webkit-justify-content:flex-end\",\"-moz-box-pack:end\",\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".ast-amp .main-header-bar-navigation\":false},[\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"width:calc(100% + 40px)\"]],[false,{\".ast-amp .ast-main-header-bar-alignment\":false},[\"display:block\",\"width:100%\",\"-webkit-box-flex:1\",\"-webkit-flex:auto\",\"-moz-box-flex:1\",\"-ms-flex:auto\",\"flex:auto\",\"-webkit-box-ordinal-group:5\",\"-webkit-order:4\",\"-moz-box-ordinal-group:5\",\"-ms-flex-order:4\",\"order:4\"]],[false,{\".ast-amp .site-header .main-header-bar-wrap .site-branding\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-flex:1\",\"-webkit-flex:1\",\"-moz-box-flex:1\",\"-ms-flex:1\",\"flex:1\",\"-webkit-align-self:center\",\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".ast-amp .ast-site-identity\":false},[\"width:100%\"]],[false,{\".ast-amp .main-header-bar-navigation .menu-item-has-children > .menu-link .sub-arrow:after\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar\":false},[\"border:0\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,{\".ast-main-header-bar-alignment .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .toggled-on .main-header-bar-navigation\":false},[\"line-height:3\",\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .sub-menu\":false},[\"line-height:3\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu\":false},[\"display:none\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children .dropdown-open+ul.sub-menu\":false},[\"display:block\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"display:inline-block\",\"position:absolute\",\"font-size:inherit\",\"top:-1px\",\"right:20px\",\"cursor:pointer\",\"webkit-font-smoothing:antialiased\",\"moz-osx-font-smoothing:grayscale\",\"padding:0 .907em\",\"font-weight:normal\",\"line-height:inherit\",\"transition:all .2s\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"-webkit-transform:rotateX(180deg)\",\"transform:rotateX(180deg)\"]],[false,{\".ast-amp .main-header-bar .main-header-bar-navigation .main-header-menu\":false},[\"border-top-width:1px\",\"border-style:solid\",\"border-color:#eaeaea\"]],[false,{\".ast-amp .main-navigation ul > li:first-child\":false},[\"border-top:0\"]],[false,{\".ast-amp .main-navigation ul ul\":false},[\"left:auto\",\"right:auto\"]],[false,{\".ast-amp .main-navigation li\":false},[\"width:100%\"]],[false,{\".ast-amp .main-navigation .widget\":false},[\"margin-bottom:1em\"]],[false,{\".ast-amp .main-navigation .widget li\":false},[\"width:auto\"]],[false,{\".ast-amp .main-navigation .widget:last-child\":false},[\"margin-bottom:0\"]],[false,{\".ast-amp .main-header-menu ul ul\":false},[\"top:0\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-amp .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:none\"]],[false,{\".ast-amp .ast-has-mobile-header-logo .custom-mobile-logo-link\":false},[\"display:inline-block\"]],[false,{\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link\":false,\".ast-theme.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg\":false},[\"display:block\"]],[false,{\".ast-amp .ast-header-widget-area .widget\":false},[\"margin:.5em 0\",\"display:block\"]],[false,{\".ast-amp .nav-fallback-text\":false},[\"float:none\"]],[false,{\".ast-amp .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap\":false},[\"height:3em\",\"line-height:3\",\"text-align:left\"]],[false,{\".ast-amp #ast-site-header-cart .widget_shopping_cart\":false},[\"display:none\"]],[false,{\".ast-theme.ast-woocommerce-cart-menu .ast-site-header-cart\":false},[\"order:initial\",\"line-height:3\",\"padding:0 1em 1em 0\"]],[false,{\".ast-amp .ast-edd-site-header-cart .widget_edd_cart_widget\":false,\".ast-amp .ast-edd-site-header-cart .ast-edd-header-cart-info-wrap\":false},[\"display:none\"]],[false,{\".ast-amp div.ast-masthead-custom-menu-items.edd-custom-menu-item\":false},[\"padding:0\"]],[false,{\".ast-amp .main-header-bar .ast-search-menu-icon.slide-search .search-form\":false},[\"right:0\"]],[false,{\".ast-amp .main-header-menu .sub-menu\":false},[\"box-shadow:none\"]],[false,{\".ast-amp .submenu-with-border .sub-menu a\":false},[\"border-width:1px\"]],[false,{\".ast-amp .submenu-with-border .sub-menu > li:last-child > a\":false},[\"border-width:1px\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-buttons-minimal\":false},[\"background:transparent\",\"border:none\"]],[false,\"}\"],[false,{\".ast-header-break-point .main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"@media (min-width:922px){\"],[false,{\".main-header-bar\":false},[\"border-bottom-width:1px\"]],[false,\"}\"],[false,\"@media (min-width:922px){\"],[false,{\"#primary\":false},[\"width:70%\"]],[false,{\"#secondary\":false},[\"width:30%\"]],[false,\"}\"],[false,{\".main-header-menu .menu-item\":false,\"#astra-footer-menu .menu-item\":false,\".main-header-bar .ast-masthead-custom-menu-items\":false},[\"-js-display:flex\",\"display:flex\",\"-webkit-box-pack:center\",\"-webkit-justify-content:center\",\"-moz-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:normal\",\"-webkit-flex-direction:column\",\"-moz-box-orient:vertical\",\"-moz-box-direction:normal\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".main-header-menu > .menu-item > .menu-link\":false,\"#astra-footer-menu > .menu-item > .menu-link\":false},[\"height:100%\",\"-webkit-box-align:center\",\"-webkit-align-items:center\",\"-moz-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-js-display:flex\",\"display:flex\"]],[false,{\".ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg\":false},[\"top:.2em\",\"margin-top:0px\",\"margin-left:0px\",\"width:.65em\",\"transform:translate(0,-2px) rotateZ(270deg)\"]],[false,{\".ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle\":false},[\"transform:rotateX(180deg)\"]],[false,{\".ast-separate-container .blog-layout-1\":false,\".ast-separate-container .blog-layout-2\":false,\".ast-separate-container .blog-layout-3\":false},[\"background-color:transparent\",\"background-image:none\"]],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-post\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-separate-container .ast-article-single:not(.ast-related-post)\":false,\".ast-separate-container .comments-area .comment-respond\":false,\".ast-separate-container .comments-area .ast-comment-list li\":false,\".ast-separate-container .ast-woocommerce-container\":false,\".ast-separate-container .error-404\":false,\".ast-separate-container .no-results\":false,\".single.ast-separate-container .ast-author-meta\":false,\".ast-separate-container .related-posts-title-wrapper\":false,\".ast-separate-container.ast-two-container #secondary .widget\":false,\".ast-separate-container .comments-count-wrapper\":false,\".ast-box-layout.ast-plain-container .site-content\":false,\".ast-padded-layout.ast-plain-container .site-content\":false,\".ast-separate-container .comments-area .comments-title\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-plain-container\":false,\".ast-page-builder-template\":false},[\"background-color:var(--ast-global-color-5)\"]],[false,\"}\"],[false,{\".ast-mobile-header-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding:10px 0\",\"height:auto\"]],[false,{\".ast-mobile-header-content > *:first-child\":false,\".ast-desktop-header-content > *:first-child\":false},[\"padding-top:10px\"]],[false,{\".ast-mobile-header-content > .ast-builder-menu\":false,\".ast-desktop-header-content > .ast-builder-menu\":false},[\"padding-top:0\"]],[false,{\".ast-mobile-header-content > *:last-child\":false,\".ast-desktop-header-content > *:last-child\":false},[\"padding-bottom:0\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label\":false},[\"width:100%\"]],[false,{\".ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before\":false},[\"transform:rotateX(180deg)\"]],[false,{\"#ast-desktop-header .ast-desktop-header-content\":false,\".ast-mobile-header-content .ast-search-icon\":false,\".ast-desktop-header-content .ast-search-icon\":false,\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content\":false},[\"display:none\"]],[false,{\".ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content\":false,\".ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content\":false},[\"display:block\"]],[false,{\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu\":false,\".ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation\":false},[\"width:unset\",\"margin:unset\"]],[false,{\".ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false,\".ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle\":false},[\"left:calc(20px - .907em)\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon\":false,\".ast-mobile-header-content .ast-search-menu-icon.slide-search\":false,\".ast-desktop-header-content .ast-search-menu-icon\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search\":false},[\"width:100%\",\"position:relative\",\"display:block\",\"right:auto\",\"transform:none\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-form\":false},[\"right:0\",\"visibility:visible\",\"opacity:1\",\"position:relative\",\"top:auto\",\"transform:none\",\"padding:0\",\"display:block\",\"overflow:hidden\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-mobile-header-content .ast-search-menu-icon .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-field\":false},[\"width:100%\",\"padding-right:5.5em\"]],[false,{\".ast-mobile-header-content .ast-search-menu-icon .search-submit\":false,\".ast-desktop-header-content .ast-search-menu-icon .search-submit\":false},[\"display:block\",\"position:absolute\",\"height:100%\",\"top:0\",\"right:0\",\"padding:0 1em\",\"border-radius:0\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link\":false},[\"padding-left:30px\"]],[false,{\".ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link\":false},[\"padding-left:40px\"]],[false,{\".ast-mobile-popup-drawer.active .ast-mobile-popup-inner\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-header-wrap .ast-mobile-header-content\":false,\".ast-desktop-header-content\":false},[\"background-color:#fff\"]],[false,{\".ast-mobile-popup-content > *\":false,\".ast-mobile-header-content > *\":false,\".ast-desktop-popup-content > *\":false,\".ast-desktop-header-content > *\":false},[\"padding-top:0px\",\"padding-bottom:0px\"]],[false,{\".content-align-flex-start .ast-builder-layout-element\":false},[\"justify-content:flex-start\"]],[false,{\".content-align-flex-start .main-header-menu\":false},[\"text-align:left\"]],[false,{\".ast-mobile-popup-drawer.active .menu-toggle-close\":false},[\"color:#3a3a3a\"]],[false,{\".ast-mobile-header-wrap .ast-primary-header-bar\":false,\".ast-primary-header-bar .site-primary-header-wrap\":false},[\"min-height:70px\"]],[false,{\".ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item\":false},[\"line-height:70px\"]],[false,\"@media (max-width:921px){\"],[false,{\"#masthead .ast-mobile-header-wrap .ast-primary-header-bar\":false,\"#masthead .ast-mobile-header-wrap .ast-below-header-bar\":false},[\"padding-left:20px\",\"padding-right:20px\"]],[false,\"}\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"@media (min-width:922px){\"],[false,{\".ast-primary-header-bar\":false},[\"border-bottom-width:1px\",\"border-bottom-color:#eaeaea\",\"border-bottom-style:solid\"]],[false,\"}\"],[false,{\".ast-primary-header-bar\":false},[\"background-color:#fff\"]],[false,{\".ast-primary-header-bar\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-primary-header-bar\":false},[\"display:grid\"]],[false,\"}\"],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .ast-mobile-menu-trigger-minimal\":false},[\"color:var(--ast-global-color-0)\",\"border:none\",\"background:transparent\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg\":false},[\"width:20px\",\"height:20px\",\"fill:var(--ast-global-color-0)\"]],[false,{\"[data-section=\\\"section-header-mobile-trigger\\\"] .ast-button-wrap .mobile-menu-wrap .mobile-menu\":false},[\"color:var(--ast-global-color-0)\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item > .menu-link\":false},[\"font-family:inherit\",\"font-weight:inherit\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,{\".ast-hfb-header .ast-builder-menu-mobile .main-header-menu\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link\":false,\".ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link\":false},[\"border-style:none\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after\":false},[\"content:unset\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle\":false},[\"top:0\"]],[false,\"}\"],[false,{\".ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"@media (max-width:921px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width:544px){\"],[false,{\".ast-header-break-point .ast-builder-menu-mobile .main-navigation\":false},[\"display:block\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":116345,\"final_size\":7719,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/lion288slot.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=6.8.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1547,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"litespeed-cache\",\"file\":\"src\\/core.cls.php\",\"line\":248,\"function\":\"LiteSpeed\\\\Core::after_user_init\",\"hook\":\"init\",\"priority\":5,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2462,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"6eb20086263e86e560757b16661f58ea\",\"parse_time\":0.18590092658996582,\"shake_time\":0.0014028549194335938,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wp-block-archives\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-archives-dropdown label\":false},[\"display:block\"]],[false,{\".wp-block-avatar\":false},[\"line-height:0\"]],[false,{\".wp-block-avatar\":false,\".wp-block-avatar amp-img\":false,\".wp-block-avatar amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-avatar.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-audio\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-audio :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"min-width:300px\",\"width:100%\"]],[false,{\".wp-block-button__link\":false},[\"align-content:center\",\"box-sizing:border-box\",\"cursor:pointer\",\"display:inline-block\",\"height:100%\",\"text-align:center\",\"word-break:break-word\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[true,{\":where(.wp-block-button__link)\":true},[\"border-radius:9999px\",\"box-shadow:none\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-decoration:none\"]],[false,{\".wp-block-button[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - var(--wp--style--block-gap,.5em) * .75)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - var(--wp--style--block-gap,.5em) * .5)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - var(--wp--style--block-gap,.5em) * .25)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"flex-basis:100%\",\"width:100%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25\":false},[\"width:25%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50\":false},[\"width:50%\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75\":false},[\"width:75%\"]],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline)\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link)\":true},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color))\":true},[\"color:currentColor\"]],[true,{\":root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background))\":true,\":root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background))\":true},[\"background-color:initial\",\"background-image:none\"]],[false,{\".wp-block-buttons\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button\":false,\".wp-block-buttons[data-amp-original-style*=text-decoration] .wp-block-button__link\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-buttons.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar td\":false,\".wp-block-calendar th\":false},[\"border:1px solid\",\"padding:.25em\"]],[false,{\".wp-block-calendar th\":false},[\"font-weight:400\"]],[false,{\".wp-block-calendar caption\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color))\":false},[\"color:#40464d\"]],[false,{\".wp-block-calendar table:where(:not(.has-text-color)) td\":false,\".wp-block-calendar table:where(:not(.has-text-color)) th\":false},[\"border-color:#ddd\"]],[false,{\".wp-block-calendar table.has-background th\":false},[\"background-color:inherit\"]],[false,{\".wp-block-calendar table.has-text-color th\":false},[\"color:inherit\"]],[false,{\":where(.wp-block-calendar table:not(.has-background) th)\":false},[\"background:#ddd\"]],[false,{\".wp-block-categories\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-categories.wp-block-categories-dropdown.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-categories .wp-block-categories__label\":false},[\"display:block\",\"width:100%\"]],[false,{\".wp-block-code\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-code code\":false},[\"direction:ltr\",\"display:block\",\"font-family:inherit\",\"overflow-wrap:break-word\",\"text-align:initial\",\"white-space:pre-wrap\"]],[false,{\".wp-block-columns\":false},[\"box-sizing:border-box\",\"display:flex\"]],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"align-items:normal\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,\"@media (max-width:781px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,\"}\"],[false,{\".wp-block-columns.is-not-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"flex-wrap:nowrap\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[true,{\":where(.wp-block-columns)\":true},[\"margin-bottom:1.75em\"]],[true,{\":where(.wp-block-columns.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"overflow-wrap:break-word\",\"word-break:break-word\"]],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-stretch\":false},[\"align-self:stretch\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-post-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments .alignleft\":false},[\"float:left\"]],[false,{\".wp-block-post-comments .alignright\":false},[\"float:right\"]],[false,{\".wp-block-post-comments .navigation:after\":false},[\"clear:both\",\"content:\\\"\\\"\",\"display:table\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"clear:both\",\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:1em\",\"line-height:1.8\",\"margin:1em 0\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"margin-top:.5em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-post-comments .comment-meta b\":false},[\"font-weight:400\"]],[false,{\".wp-block-post-comments .comment-meta .comment-awaiting-moderation\":false},[\"display:block\",\"margin-bottom:1em\",\"margin-top:1em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.875em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.875em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input:not([type=submit])\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[false,{\".wp-block-post-comments input:not([type=submit]):not([type=checkbox])\":false,\".wp-block-post-comments textarea\":false},[\"padding:calc(.667em + 2px)\"]],[true,{\":where(.wp-block-post-comments input[type=submit])\":true},[\"border:none\"]],[false,{\".wp-block-comments\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous\":false},[\"font-size:inherit\",\"margin-bottom:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child\":false,\".wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-comments-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-comment-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-comment-template li\":false},[\"clear:both\"]],[false,{\".wp-block-comment-template ol\":false},[\"list-style:none\",\"margin-bottom:0\",\"max-width:100%\",\"padding-left:2rem\"]],[false,{\".wp-block-comment-template.alignleft\":false},[\"float:left\"]],[false,{\".wp-block-comment-template.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"width:fit-content\"]],[false,{\".wp-block-comment-template.alignright\":false},[\"float:right\"]],[false,{\".wp-block-comment-date\":false},[\"box-sizing:border-box\"]],[false,{\".comment-awaiting-moderation\":false},[\"display:block\",\"font-size:.875em\",\"line-height:1.5\"]],[false,{\".wp-block-comment-author-name\":false,\".wp-block-comment-content\":false,\".wp-block-comment-edit-link\":false,\".wp-block-comment-reply-link\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"align-items:center\",\"background-position:50%\",\"box-sizing:border-box\",\"display:flex\",\"justify-content:center\",\"min-height:430px\",\"overflow:hidden\",\"overflow:clip\",\"padding:1em\",\"position:relative\"]],[false,{\".wp-block-cover .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image .has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover .has-background-dim.has-background-gradient\":false,\".wp-block-cover-image .has-background-dim.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"background-color:inherit\",\"content:\\\"\\\"\"]],[false,{\".wp-block-cover .wp-block-cover__background\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false,\".wp-block-cover-image .wp-block-cover__background\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false},[\"bottom:0\",\"left:0\",\"opacity:.5\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100\":false,\".wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover .wp-block-cover__inner-container\":false,\".wp-block-cover-image .wp-block-cover__inner-container\":false},[\"color:inherit\",\"position:relative\",\"width:100%\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover .wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover-image .wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false},[\"border:none\",\"bottom:0\",\"box-shadow:none\",\"height:100%\",\"left:0\",\"margin:0\",\"max-height:none\",\"max-width:none\",\"object-fit:cover\",\"outline:none\",\"padding:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:fixed\",\"background-repeat:no-repeat\",\"background-size:cover\"]],[false,\"@supports (-webkit-touch-callout:inherit){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false,\".wp-block-cover__image-background.has-parallax\":false,\"amp-video.wp-block-cover__video-background.has-parallax\":false,\"amp-youtube.wp-block-cover__video-background.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false,\".wp-block-cover__image-background.is-repeated\":false,\"amp-video.wp-block-cover__video-background.is-repeated\":false,\"amp-youtube.wp-block-cover__video-background.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover .wp-block-cover-text\":false,\".wp-block-cover-image .wp-block-cover-image-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\",\"z-index:1\"]],[true,{\":where(.wp-block-cover-image:not(.has-text-color))\":true,\":where(.wp-block-cover:not(.has-text-color))\":true},[\"color:#fff\"]],[true,{\":where(.wp-block-cover-image.is-light:not(.has-text-color))\":true,\":where(.wp-block-cover.is-light:not(.has-text-color))\":true},[\"color:#000\"]],[true,{\":root :where(.wp-block-cover h1:not(.has-text-color))\":true,\":root :where(.wp-block-cover h2:not(.has-text-color))\":true,\":root :where(.wp-block-cover h3:not(.has-text-color))\":true,\":root :where(.wp-block-cover h4:not(.has-text-color))\":true,\":root :where(.wp-block-cover h5:not(.has-text-color))\":true,\":root :where(.wp-block-cover h6:not(.has-text-color))\":true,\":root :where(.wp-block-cover p:not(.has-text-color))\":true},[\"color:inherit\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false,\"body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before\":false},[\"z-index:1\"]],[false,{\".has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container\":false},[\"z-index:auto\"]],[false,{\".wp-block-details\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-details summary\":false},[\"cursor:pointer\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-height:240px\",\"min-width:320px\"]],[false,{\".wp-block-embed\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-embed :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"bottom:0\",\"height:100%\",\"left:0\",\"position:absolute\",\"right:0\",\"top:0\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-file:not(.wp-element-button)\":false},[\"font-size:.8em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[true,{\":where(.wp-block-file)\":true},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[true,{\":where(.wp-block-file__button)\":true},[\"border-radius:2em\",\"display:inline-block\",\"padding:.5em 1em\"]],[true,{\":where(.wp-block-file__button):is(a):active\":true,\":where(.wp-block-file__button):is(a):focus\":true,\":where(.wp-block-file__button):is(a):hover\":true,\":where(.wp-block-file__button):is(a):visited\":true},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-form-input__label\":false},[\"display:flex\",\"flex-direction:column\",\"gap:.25em\",\"margin-bottom:.5em\",\"width:100%\"]],[false,{\".wp-block-form-input__label.is-label-inline\":false},[\"align-items:center\",\"flex-direction:row\",\"gap:.5em\"]],[false,{\".wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content\":false},[\"margin-bottom:.5em\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox])\":false},[\"flex-direction:row\",\"width:fit-content\"]],[false,{\".wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content\":false},[\"margin:0\"]],[false,{\".wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox])\":false},[\"flex-direction:row-reverse\"]],[false,{\".wp-block-form-input__label-content\":false},[\"width:fit-content\"]],[false,{\".wp-block-form-input__input\":false},[\"font-size:1em\",\"margin-bottom:.5em\",\"padding:0 .5em\"]],[false,{\".wp-block-form-input__input[type=date]\":false,\".wp-block-form-input__input[type=datetime-local]\":false,\".wp-block-form-input__input[type=datetime]\":false,\".wp-block-form-input__input[type=email]\":false,\".wp-block-form-input__input[type=month]\":false,\".wp-block-form-input__input[type=number]\":false,\".wp-block-form-input__input[type=password]\":false,\".wp-block-form-input__input[type=search]\":false,\".wp-block-form-input__input[type=tel]\":false,\".wp-block-form-input__input[type=text]\":false,\".wp-block-form-input__input[type=time]\":false,\".wp-block-form-input__input[type=url]\":false,\".wp-block-form-input__input[type=week]\":false},[\"border:1px solid\",\"line-height:2\",\"min-height:2em\"]],[false,{\"textarea.wp-block-form-input__input\":false},[\"min-height:10em\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images)\":false,\".wp-block-gallery:not(.has-nested-images)\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"margin:0\",\"padding:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item\":false},[\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"margin:0 1em 1em 0\",\"position:relative\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure\":false},[\"align-items:flex-end\",\"display:flex\",\"height:100%\",\"justify-content:flex-start\",\"margin:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item amp-anim\":false},[\"display:block\",\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,rgba(0,0,0,0))\",\"bottom:0\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:.8em\",\"margin:0\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:2\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images) figcaption\":false,\".wp-block-gallery:not(.has-nested-images) figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item amp-anim\":false},[\"flex:1\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(33.33333% - .66667em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(25% - .75em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(20% - .8em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(16.66667% - .83333em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(14.28571% - .85714em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item\":false},[\"margin-right:1em\",\"width:calc(12.5% - .875em)\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child\":false,\".wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).alignleft\":false,\".blocks-gallery-grid:not(.has-nested-images).alignright\":false,\".wp-block-gallery:not(.has-nested-images).alignleft\":false,\".wp-block-gallery:not(.has-nested-images).alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-gallery:not(.is-cropped) .blocks-gallery-item\":false},[\"align-self:flex-start\"]],[false,{\"figure.wp-block-gallery.has-nested-images\":false},[\"align-items:normal\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)\":false},[\"margin:0\",\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) \\/ 2)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-direction:column\",\"flex-grow:1\",\"justify-content:center\",\"max-width:100%\",\"position:relative\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image>div\":false},[\"flex-direction:column\",\"flex-grow:1\",\"margin:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim\":false},[\"display:block\",\"height:auto\",\"width:auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"bottom:0\",\"left:0\",\"max-height:100%\",\"position:absolute\",\"right:0\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before\":false},[\"-webkit-backdrop-filter:blur(3px)\",\"backdrop-filter:blur(3px)\",\"content:\\\"\\\"\",\"height:100%\",\"-webkit-mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"mask-image:linear-gradient(0deg,#000 20%,rgba(0,0,0,0))\",\"max-height:40%\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"background:linear-gradient(0deg,rgba(0,0,0,.4),rgba(0,0,0,0))\",\"box-sizing:border-box\",\"color:#fff\",\"font-size:13px\",\"margin:0\",\"overflow:auto\",\"padding:1em\",\"scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0)\",\"scrollbar-gutter:stable both-edges\",\"scrollbar-width:thin\",\"text-align:center\",\"text-shadow:0 0 1.5px #000\",\"will-change:transform\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar\":false},[\"height:12px\",\"width:12px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track\":false},[\"background-color:initial\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb\":false},[\"background-clip:padding-box\",\"background-color:initial\",\"border:3px solid rgba(0,0,0,0)\",\"border-radius:8px\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb\":false},[\"background-color:rgba(255,255,255,.8)\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"@media (hover:none){\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption\":false},[\"scrollbar-color:rgba(255,255,255,.8) rgba(0,0,0,0)\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image figcaption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-img\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div\":false},[\"flex:1 1 auto\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption\":false},[\"background:none\",\"color:inherit\",\"flex:initial\",\"margin:0\",\"padding:10px 10px 9px\",\"position:relative\",\"text-shadow:none\"]],[false,{\".wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before\":false,\".wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before\":false},[\"content:none\"]],[false,{\".wp-block-gallery.has-nested-images figcaption\":false},[\"flex-basis:100%\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image)\":false},[\"margin-bottom:auto\",\"margin-top:0\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)\":false},[\"align-self:inherit\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone)\":false},[\"display:flex\"]],[false,{\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-img\":false,\".wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) amp-anim\":false},[\"flex:1 0 0%\",\"height:100%\",\"object-fit:cover\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image)\":false},[\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33333% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(25% - var(--wp--style--unstable-gallery-gap,16px) * .75)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(20% - var(--wp--style--unstable-gallery-gap,16px) * .8)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(16.66667% - var(--wp--style--unstable-gallery-gap,16px) * .83333)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(14.28571% - var(--wp--style--unstable-gallery-gap,16px) * .85714)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(12.5% - var(--wp--style--unstable-gallery-gap,16px) * .875)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px) * .66667)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)\":false,\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image)\":false},[\"width:calc(50% - var(--wp--style--unstable-gallery-gap,16px) * .5)\"]],[false,{\".wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".wp-block-gallery.has-nested-images.alignleft\":false,\".wp-block-gallery.has-nested-images.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-gallery.has-nested-images.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-group.wp-block-group-is-layout-constrained)\":true},[\"position:relative\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"h1.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h1.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h2.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h2.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h3.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h3.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h4.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h4.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h5.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h5.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false,\"h6.has-text-align-left[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-lr])\":false,\"h6.has-text-align-right[data-amp-original-style*=writing-mode]:where([data-amp-original-style*=vertical-rl])\":false},[\"rotate:180deg\"]],[false,{\".wp-block-image>a\":false,\".wp-block-image>figure>a\":false},[\"display:inline-block\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-image amp-img.hide\":false,\".wp-block-image amp-anim.hide\":false},[\"visibility:hidden\"]],[false,{\".wp-block-image amp-img.show\":false,\".wp-block-image amp-anim.show\":false},[\"animation:show-content-image .4s\"]],[false,\"}\"],[false,{\".wp-block-image[data-amp-original-style*=border-radius] amp-img\":false,\".wp-block-image[data-amp-original-style*=border-radius] amp-anim\":false,\".wp-block-image[data-amp-original-style*=border-radius]>a\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.has-custom-border amp-img\":false,\".wp-block-image.has-custom-border amp-anim\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull>a\":false,\".wp-block-image.alignwide>a\":false},[\"width:100%\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"height:auto\",\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false,\".wp-block-image.aligncenter\":false,\".wp-block-image.alignleft\":false,\".wp-block-image.alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false,\".wp-block-image.aligncenter>figcaption\":false,\".wp-block-image.alignleft>figcaption\":false,\".wp-block-image.alignright>figcaption\":false},[\"caption-side:bottom\",\"display:table-caption\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"border-radius:0\",\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<svg viewBox=\\\\\\\"0 0 100 100\\\\\\\" xmlns=\\\\\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\\\\\"><circle cx=\\\\\\\"50\\\\\\\" cy=\\\\\\\"50\\\\\\\" r=\\\\\\\"50\\\\\\\"\\/><\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-position:center\",\"mask-position:center\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\".wp-lightbox-container\":false},[\"display:flex\",\"flex-direction:column\",\"position:relative\"]],[false,{\".wp-lightbox-container amp-img\":false,\".wp-lightbox-container amp-anim\":false},[\"cursor:zoom-in\"]],[false,{\".wp-lightbox-container amp-img:hover+button\":false,\".wp-lightbox-container amp-anim:hover+button\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button\":false},[\"align-items:center\",\"-webkit-backdrop-filter:blur(16px) saturate(180%)\",\"backdrop-filter:blur(16px) saturate(180%)\",\"background-color:rgba(90,90,90,.25)\",\"border:none\",\"border-radius:4px\",\"cursor:zoom-in\",\"display:flex\",\"height:20px\",\"justify-content:center\",\"opacity:0\",\"padding:0\",\"position:absolute\",\"right:16px\",\"text-align:center\",\"top:16px\",\"width:20px\",\"z-index:100\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-container button\":false},[\"transition:opacity .2s ease\"]],[false,\"}\"],[false,{\".wp-lightbox-container button:focus-visible\":false},[\"outline:3px auto rgba(90,90,90,.25)\",\"outline:3px auto -webkit-focus-ring-color\",\"outline-offset:3px\"]],[false,{\".wp-lightbox-container button:hover\":false},[\"cursor:pointer\",\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false},[\"opacity:1\"]],[false,{\".wp-lightbox-container button:focus\":false,\".wp-lightbox-container button:hover\":false,\".wp-lightbox-container button:not(:hover):not(:active):not(.has-background)\":false},[\"background-color:rgba(90,90,90,.25)\",\"border:none\"]],[false,{\".wp-lightbox-overlay\":false},[\"box-sizing:border-box\",\"cursor:zoom-out\",\"height:100vh\",\"left:0\",\"overflow:hidden\",\"position:fixed\",\"top:0\",\"visibility:hidden\",\"width:100%\",\"z-index:100000\"]],[false,{\".wp-lightbox-overlay .close-button\":false},[\"align-items:center\",\"cursor:pointer\",\"display:flex\",\"justify-content:center\",\"min-height:40px\",\"min-width:40px\",\"padding:0\",\"position:absolute\",\"right:calc(env(safe-area-inset-right) + 16px)\",\"top:calc(env(safe-area-inset-top) + 16px)\",\"z-index:5000000\"]],[false,{\".wp-lightbox-overlay .close-button:focus\":false,\".wp-lightbox-overlay .close-button:hover\":false,\".wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .lightbox-image-container\":false},[\"height:var(--wp--lightbox-container-height)\",\"left:50%\",\"overflow:hidden\",\"position:absolute\",\"top:50%\",\"transform:translate(-50%,-50%)\",\"transform-origin:top left\",\"width:var(--wp--lightbox-container-width)\",\"z-index:9999999999\"]],[false,{\".wp-lightbox-overlay .wp-block-image\":false},[\"align-items:center\",\"box-sizing:border-box\",\"display:flex\",\"height:100%\",\"justify-content:center\",\"margin:0\",\"position:relative\",\"transform-origin:0 0\",\"width:100%\",\"z-index:3000000\"]],[false,{\".wp-lightbox-overlay .wp-block-image amp-img\":false,\".wp-lightbox-overlay .wp-block-image amp-anim\":false},[\"height:var(--wp--lightbox-image-height)\",\"min-height:var(--wp--lightbox-image-height)\",\"min-width:var(--wp--lightbox-image-width)\",\"width:var(--wp--lightbox-image-width)\"]],[false,{\".wp-lightbox-overlay .wp-block-image figcaption\":false},[\"display:none\"]],[false,{\".wp-lightbox-overlay button\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-lightbox-overlay .scrim\":false},[\"background-color:#fff\",\"height:100%\",\"opacity:.9\",\"position:absolute\",\"width:100%\",\"z-index:2000000\"]],[false,{\".wp-lightbox-overlay.active\":false},[\"visibility:visible\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-lightbox-overlay.active\":false},[\"animation:turn-on-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.active amp-img\":false,\".wp-lightbox-overlay.active amp-anim\":false},[\"animation:turn-on-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active)\":false},[\"animation:turn-off-visibility .35s both\"]],[false,{\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-img\":false,\".wp-lightbox-overlay.show-closing-animation:not(.active) amp-anim\":false},[\"animation:turn-off-visibility .25s both\"]],[false,{\".wp-lightbox-overlay.zoom.active\":false},[\"animation:none\",\"opacity:1\",\"visibility:visible\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container\":false},[\"animation:lightbox-zoom-in .4s\"]],[false,{\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.active .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.active .scrim\":false},[\"animation:turn-on-visibility .4s forwards\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active)\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container\":false},[\"animation:lightbox-zoom-out .4s\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-img\":false,\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container amp-anim\":false},[\"animation:none\"]],[false,{\".wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim\":false},[\"animation:turn-off-visibility .4s forwards\"]],[false,\"}\"],[true,\"@keyframes show-content-image{\"],[true,\"0%{visibility:hidden}\"],[true,\"99%{visibility:hidden}\"],[true,\"to{visibility:visible}\"],[true,\"}@keyframes turn-on-visibility{\"],[true,\"0%{opacity:0}\"],[true,\"to{opacity:1}\"],[true,\"}@keyframes turn-off-visibility{\"],[true,\"0%{opacity:1;visibility:visible}\"],[true,\"99%{opacity:0;visibility:visible}\"],[true,\"to{opacity:0;visibility:hidden}\"],[true,\"}@keyframes lightbox-zoom-in{\"],[true,\"0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}\"],[true,\"to{transform:translate(-50%,-50%) scale(1)}\"],[true,\"}@keyframes lightbox-zoom-out{\"],[true,\"0%{transform:translate(-50%,-50%) scale(1);visibility:visible}\"],[true,\"99%{visibility:visible}\"],[true,\"to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) \\/ 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}\"],[true,\"}\"],[false,{\"ol.wp-block-latest-comments\":false},[\"box-sizing:border-box\",\"margin-left:0\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment))\":true},[\"line-height:1.1\"]],[true,{\":where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p))\":true},[\"line-height:1.8\"]],[false,{\".has-dates :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false,\".has-excerpts :where(.wp-block-latest-comments:not([data-amp-original-style*=line-height]))\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"list-style:none\",\"min-height:2.25em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-comments[class*=-font-size] a\":false,\".wp-block-latest-comments[data-amp-original-style*=font-size] a\":false},[\"font-size:inherit\"]],[false,{\".wp-block-latest-posts\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[true,{\":root :where(.wp-block-latest-posts.is-grid)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-latest-posts.wp-block-latest-posts__list)\":true},[\"padding-left:0\"]],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false,\".wp-block-latest-posts__post-full-content\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"max-width:100%\",\"width:auto\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"float:left\",\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"float:right\",\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[true,{\"ol\":true,\"ul\":true},[\"box-sizing:border-box\"]],[true,{\":root :where(.wp-block-list.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-loginout\":false,\".wp-block-media-text\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media\":false,\".wp-block-media-text>.wp-block-media-text__content\":false,\".wp-block-media-text>.wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text>.wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media a\":false},[\"display:block\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"height:auto\",\"max-width:unset\",\"vertical-align:middle\",\"width:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media\":false},[\"background-size:cover\",\"height:100%\",\"min-height:250px\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill>.wp-block-media-text__media amp-anim\":false},[\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"position:relative\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill-element>.wp-block-media-text__media amp-anim\":false},[\"height:100%\",\"object-fit:cover\",\"position:absolute\",\"width:100%\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\",\"--navigation-layout-justification-setting:flex-start\",\"--navigation-layout-direction:row\",\"--navigation-layout-wrap:wrap\",\"--navigation-layout-justify:flex-start\",\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation ul\":false},[\"margin-bottom:0\",\"margin-left:0\",\"margin-top:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"align-items:center\",\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content\":false},[\"display:block\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active\":false,\".wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus\":false},[\"text-decoration:line-through\"]],[false,{\".wp-block-navigation :where(a)\":false,\".wp-block-navigation :where(a:active)\":false,\".wp-block-navigation :where(a:focus)\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon\":false},[\"align-self:center\",\"background-color:inherit\",\"border:none\",\"color:currentColor\",\"display:inline-block\",\"font-size:inherit\",\"height:.6em\",\"line-height:0\",\"margin-left:.25em\",\"padding:0\",\"width:.6em\"]],[false,{\".wp-block-navigation .wp-block-navigation__submenu-icon svg\":false},[\"display:inline-block\",\"stroke:currentColor\",\"height:inherit\",\"margin-top:.075em\",\"width:inherit\"]],[false,{\".wp-block-navigation.is-vertical\":false},[\"--navigation-layout-direction:column\",\"--navigation-layout-justify:initial\",\"--navigation-layout-align:flex-start\"]],[false,{\".wp-block-navigation.no-wrap\":false},[\"--navigation-layout-wrap:nowrap\"]],[false,{\".wp-block-navigation.items-justified-center\":false},[\"--navigation-layout-justification-setting:center\",\"--navigation-layout-justify:center\"]],[false,{\".wp-block-navigation.items-justified-center.is-vertical\":false},[\"--navigation-layout-align:center\"]],[false,{\".wp-block-navigation.items-justified-right\":false},[\"--navigation-layout-justification-setting:flex-end\",\"--navigation-layout-justify:flex-end\"]],[false,{\".wp-block-navigation.items-justified-right.is-vertical\":false},[\"--navigation-layout-align:flex-end\"]],[false,{\".wp-block-navigation.items-justified-space-between\":false},[\"--navigation-layout-justification-setting:space-between\",\"--navigation-layout-justify:space-between\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"align-items:normal\",\"background-color:inherit\",\"color:inherit\",\"display:flex\",\"flex-direction:column\",\"height:0\",\"left:-1px\",\"opacity:0\",\"overflow:hidden\",\"position:absolute\",\"top:100%\",\"visibility:hidden\",\"width:0\",\"z-index:2\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container\":false},[\"transition:opacity .1s linear\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content\":false},[\"display:flex\",\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content\":false},[\"margin:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:-1px\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before\":false},[\"background:rgba(0,0,0,0)\",\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"position:absolute\",\"right:100%\",\"width:.5em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon\":false},[\"margin-right:.25em\"]],[false,{\".wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container\":false,\".wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container\":false},[\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:visible\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container\":false},[\"left:0\",\"top:100%\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation-submenu\":false},[\"display:flex\",\"position:relative\"]],[false,{\".wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\"button.wp-block-navigation-item__content\":false},[\"background-color:initial\",\"border:none\",\"color:currentColor\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-align:left\",\"text-transform:inherit\"]],[false,{\".wp-block-navigation-submenu__toggle\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle\":false},[\"padding-left:0\",\"padding-right:.85em\"]],[false,{\".wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon\":false},[\"margin-left:-.6em\",\"pointer-events:none\"]],[false,{\".wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle)\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation__container\":false,\".wp-block-navigation__responsive-close\":false,\".wp-block-navigation__responsive-container\":false,\".wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-dialog\":false},[\"gap:inherit\"]],[true,{\":where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button))\":true},[\"padding:.5em 1em\"]],[true,{\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button))\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content)\":true,\":where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content)\":true},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:-1px\",\"right:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false,\".wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:100%\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container\":false},[\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation.has-background .wp-block-navigation__submenu-container\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,{\".wp-block-navigation__container:only-child\":false,\".wp-block-page-list:only-child\":false},[\"flex-grow:1\"]],[true,\"@keyframes overlay-menu__fade-in-animation{\"],[true,\"0%{opacity:0;transform:translateY(.5em)}\"],[true,\"to{opacity:1;transform:translateY(0)}\"],[true,\"}\"],[false,{\".wp-block-navigation__responsive-container\":false},[\"bottom:0\",\"display:none\",\"left:0\",\"position:fixed\",\"right:0\",\"top:0\"]],[false,{\".wp-block-navigation__responsive-container :where(.wp-block-navigation-item a)\":false},[\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open):not(#_#_#_#_#_#_#_)\":false},[\"background-color:inherit\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:inherit\",\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)\",\"z-index:100000\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"animation:overlay-menu__fade-in-animation .1s ease-out\",\"animation-fill-mode:forwards\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false},[\"align-items:var(--navigation-layout-justification-setting,inherit)\",\"display:flex\",\"flex-direction:column\",\"flex-wrap:nowrap\",\"overflow:visible\",\"padding-top:calc(2rem + 24px)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container\":false},[\"border:none\",\"height:auto\",\"min-width:200px\",\"opacity:1\",\"overflow:initial\",\"padding-left:2rem\",\"padding-right:2rem\",\"position:static\",\"visibility:visible\",\"width:auto\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"gap:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container\":false},[\"padding-top:var(--wp--style--block-gap,2em)\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content\":false},[\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-justification-setting,initial)\",\"display:flex\",\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list:not(#_#_#_#_#_#_#_)\":false},[\"background:rgba(0,0,0,0)\",\"color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:auto\",\"right:auto\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)\":false},[\"background-color:inherit\",\"display:block\",\"position:relative\",\"width:100%\",\"z-index:auto\"]],[false,{\".wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\"]],[false,{\".wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"color:#000\"]],[false,{\".wp-block-navigation__toggle_button_label\":false},[\"font-size:1rem\",\"font-weight:700\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"background:rgba(0,0,0,0)\",\"border:none\",\"color:currentColor\",\"cursor:pointer\",\"margin:0\",\"padding:0\",\"text-transform:inherit\",\"vertical-align:middle\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"display:block\",\"height:24px\",\"pointer-events:none\",\"width:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,{\".wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open:not(.always-shown)\":false},[\"display:none\"]],[false,\"}\"],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"right:0\",\"top:0\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close\":false},[\"font-family:inherit\",\"font-size:inherit\",\"font-weight:inherit\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".has-modal-open .wp-block-navigation__responsive-close\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:var(--wp--style--global--wide-size,100%)\"]],[false,{\".wp-block-navigation__responsive-close:focus\":false},[\"outline:none\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-navigation__responsive-dialog\":false},[\"position:relative\"]],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:46px\"]],[false,\"@media (min-width:782px){\"],[false,{\".has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__label\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-navigation-item__description\":false},[\"display:none\"]],[false,{\".link-ui-tools\":false},[\"border-top:1px solid #f0f0f0\",\"padding:8px\"]],[false,{\".link-ui-block-inserter\":false},[\"padding-top:8px\"]],[false,{\".link-ui-block-inserter__back\":false},[\"margin-left:8px\",\"text-transform:uppercase\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"align-items:var(--navigation-layout-align,initial)\",\"background-color:inherit\",\"display:flex\",\"flex-direction:var(--navigation-layout-direction,initial)\",\"flex-wrap:var(--navigation-layout-wrap,wrap)\",\"justify-content:var(--navigation-layout-justify,initial)\"]],[false,{\".wp-block-navigation .wp-block-navigation-item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-page-list\":false},[\"box-sizing:border-box\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"font-style:normal\",\"font-weight:100\",\"line-height:.68\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\"]],[false,{\"body.rtl .has-drop-cap:not(:focus):first-letter\":false},[\"float:none\",\"margin-left:.1em\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[true,{\":root :where(p.has-background)\":true},[\"padding:1.25em 2.375em\"]],[true,{\":where(p.has-text-color:not(.has-link-color)) a\":true},[\"color:inherit\"]],[false,{\"p.has-text-align-left[data-amp-original-style*=\\\"writing-mode:vertical-lr\\\"]\":false,\"p.has-text-align-right[data-amp-original-style*=\\\"writing-mode:vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-author\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"font-size:.5em\",\"margin-bottom:0\",\"margin-top:0\",\"width:100%\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"font-size:.7em\",\"margin-bottom:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-post-author__name\":false},[\"margin:0\"]],[false,{\".wp-block-post-author-biography\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-comments-form) input:not([type=submit])\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"border:1px solid #949494\",\"font-family:inherit\",\"font-size:1em\"]],[true,{\":where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox]))\":true,\":where(.wp-block-post-comments-form) textarea\":false},[\"padding:calc(.667em + 2px)\"]],[false,{\".wp-block-post-comments-form\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-weight] :where(.comment-reply-title)\":false},[\"font-weight:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-family] :where(.comment-reply-title)\":false},[\"font-family:inherit\"]],[false,{\".wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title)\":false,\".wp-block-post-comments-form[data-amp-original-style*=font-size] :where(.comment-reply-title)\":false},[\"font-size:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=line-height] :where(.comment-reply-title)\":false},[\"line-height:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=font-style] :where(.comment-reply-title)\":false},[\"font-style:inherit\"]],[false,{\".wp-block-post-comments-form[data-amp-original-style*=letter-spacing] :where(.comment-reply-title)\":false},[\"letter-spacing:inherit\"]],[false,{\".wp-block-post-comments-form :where(input[type=submit])\":false},[\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"overflow-wrap:break-word\",\"text-align:center\"]],[false,{\".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden])\":false,\".wp-block-post-comments-form .comment-form textarea\":false},[\"box-sizing:border-box\",\"display:block\",\"width:100%\"]],[false,{\".wp-block-post-comments-form .comment-form-author label\":false,\".wp-block-post-comments-form .comment-form-email label\":false,\".wp-block-post-comments-form .comment-form-url label\":false},[\"display:block\",\"margin-bottom:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent\":false},[\"display:flex\",\"gap:.25em\"]],[false,{\".wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent\":false},[\"margin-top:.35em\"]],[false,{\".wp-block-post-comments-form .comment-reply-title\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-post-comments-form .comment-reply-title :where(small)\":false},[\"font-size:var(--wp--preset--font-size--medium,smaller)\",\"margin-left:.5em\"]],[false,{\".wp-block-post-comments-count\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-content\":false},[\"display:flow-root\"]],[false,{\".wp-block-post-comments-link\":false,\".wp-block-post-date\":false},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-post-excerpt)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__excerpt\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-post-excerpt__more-text\":false},[\"margin-bottom:0\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-post-excerpt__more-link\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-post-featured-image :where(amp-img)\":false,\".wp-block-post-featured-image :where(amp-anim)\":false},[\"box-sizing:border-box\",\"height:auto\",\"max-width:100%\",\"vertical-align:bottom\",\"width:100%\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim\":false},[\"background-color:#000\",\"inset:0\",\"position:absolute\"]],[false,{\".wp-block-post-featured-image\":false},[\"position:relative\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient\":false},[\"background-color:initial\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0\":false},[\"opacity:0\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10\":false},[\"opacity:.1\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20\":false},[\"opacity:.2\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30\":false},[\"opacity:.3\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40\":false},[\"opacity:.4\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50\":false},[\"opacity:.5\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60\":false},[\"opacity:.6\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70\":false},[\"opacity:.7\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80\":false},[\"opacity:.8\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90\":false},[\"opacity:.9\"]],[false,{\".wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100\":false},[\"opacity:1\"]],[false,{\".wp-block-post-featured-image:where(.alignleft,.alignright)\":false},[\"width:100%\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-post-navigation-link.has-text-align-left[data-amp-original-style*=\\\"writing-mode: vertical-lr\\\"]\":false,\".wp-block-post-navigation-link.has-text-align-right[data-amp-original-style*=\\\"writing-mode: vertical-rl\\\"]\":false},[\"rotate:180deg\"]],[false,{\".wp-block-post-terms\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-terms .wp-block-post-terms__separator\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-post-time-to-read\":false,\".wp-block-post-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-post-title\":false},[\"word-break:break-word\"]],[false,{\".wp-block-post-title :where(a)\":false},[\"display:inline-block\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-post-author-name\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-preformatted\":false},[\"box-sizing:border-box\",\"white-space:pre-wrap\"]],[true,{\":where(.wp-block-preformatted.has-background)\":true},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"box-sizing:border-box\",\"margin:0 0 1em\",\"overflow-wrap:break-word\",\"padding:4em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote blockquote\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote p\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote blockquote\":false},[\"margin:0\"]],[false,{\".wp-block-pullquote p\":false},[\"margin-top:0\"]],[false,{\".wp-block-pullquote p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote.has-text-align-left blockquote\":false},[\"text-align:left\"]],[false,{\".wp-block-pullquote.has-text-align-right blockquote\":false},[\"text-align:right\"]],[false,{\".wp-block-pullquote.has-text-align-center blockquote\":false},[\"text-align:center\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"font-size:2em\",\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"font-style:normal\",\"text-transform:none\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-post-template\":false},[\"box-sizing:border-box\",\"list-style:none\",\"margin-bottom:0\",\"margin-top:0\",\"max-width:100%\",\"padding:0\"]],[false,{\".wp-block-post-template.is-flex-container\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"gap:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container>li\":false},[\"margin:0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,\"}\"],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid\":false},[\"grid-template-columns:1fr\"]],[false,\"}\"],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignright\":false,\".wp-block-post-template-is-layout-flow>li>.alignright\":false},[\"float:right\",\"margin-inline-end:0\",\"margin-inline-start:2em\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.alignleft\":false,\".wp-block-post-template-is-layout-flow>li>.alignleft\":false},[\"float:left\",\"margin-inline-end:2em\",\"margin-inline-start:0\"]],[false,{\".wp-block-post-template-is-layout-constrained>li>.aligncenter\":false,\".wp-block-post-template-is-layout-flow>li>.aligncenter\":false},[\"margin-inline-end:auto\",\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type\":false},[\"margin-inline-start:auto\"]],[false,{\".wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child\":false},[\"margin-inline-end:auto\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow\":false},[\"display:inline-block\",\"margin-right:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow\":false},[\"display:inline-block\",\"margin-left:1ch\"]],[false,{\".wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron)\":false},[\"transform:scaleX(1)\"]],[false,{\".wp-block-query-pagination.aligncenter\":false},[\"justify-content:center\"]],[false,{\".wp-block-query-title\":false,\".wp-block-query-total\":false,\".wp-block-quote\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-quote\":false},[\"overflow-wrap:break-word\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain))\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain))\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) p\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-large:where(:not(.is-style-plain)) footer\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite\":false,\".wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-quote>cite\":false},[\"display:block\"]],[false,{\".wp-block-read-more\":false},[\"display:block\",\"width:fit-content\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration]))\":false},[\"text-decoration:none\"]],[false,{\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):active\":false,\".wp-block-read-more:where(:not([data-amp-original-style*=text-decoration])):focus\":false},[\"text-decoration:none\"]],[false,{\"ul.wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\"ul.wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\"ul.wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\"ul.wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\"ul.wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\"ul.wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"font-size:.8125em\"]],[false,{\".wp-block-rss\":false},[\"box-sizing:border-box\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-search__button\":false},[\"margin-left:10px\",\"word-break:normal\"]],[false,{\".wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search__button svg\":false},[\"height:1.25em\",\"min-height:24px\",\"min-width:24px\",\"width:1.25em\",\"fill:currentColor\",\"vertical-align:text-bottom\"]],[true,{\":where(.wp-block-search__button)\":true},[\"border:1px solid #ccc\",\"padding:6px 10px\"]],[false,{\".wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search__input\":false},[\"appearance:none\",\"border:1px solid #949494\",\"flex-grow:1\",\"margin-left:0\",\"margin-right:0\",\"min-width:3rem\",\"padding:8px\"]],[false,{\".wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:unset\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"box-sizing:border-box\",\"display:flex\",\"flex-shrink:0\",\"justify-content:center\",\"margin-left:0\",\"max-width:100%\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"transition-property:width\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper:not(#_#_#_#_#_#_#_)\":false},[\"min-width:0\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__input\":false},[\"flex-basis:100%\",\"transition-duration:.3s\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden\":false,\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper\":false},[\"overflow:hidden\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input\":false},[\"flex-basis:0\",\"flex-grow:0\",\"margin:0\"]],[false,{\".wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input:not(#_#_#_#_#_#_#_)\":false},[\"border-left-width:0\",\"border-right-width:0\",\"min-width:0\",\"padding-left:0\",\"padding-right:0\",\"width:0\"]],[true,{\":where(.wp-block-search__input)\":true},[\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-transform:inherit\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)\":true},[\"border:1px solid #949494\",\"box-sizing:border-box\",\"padding:4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input\":false},[\"border:none\",\"border-radius:0\",\"padding:0 4px\"]],[false,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus\":false},[\"outline:none\"]],[true,{\":where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button)\":true},[\"padding:4px 8px\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper\":false},[\"float:right\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-top:2px solid\"]],[true,{\":root :where(.wp-block-separator.is-style-dots)\":true},[\"height:auto\",\"line-height:1\",\"text-align:center\"]],[true,{\":root :where(.wp-block-separator.is-style-dots):before\":true},[\"color:currentColor\",\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"font-family:serif\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\",\"border:none\"]],[false,{\".wp-block-site-logo\":false},[\"box-sizing:border-box\",\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\",\"line-height:0\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"height:auto\",\"width:120px\"]],[false,{\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"height:auto\",\"max-width:100%\"]],[false,{\".wp-block-site-logo a\":false,\".wp-block-site-logo amp-img\":false,\".wp-block-site-logo amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-site-logo.aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\"]],[true,{\":root :where(.wp-block-site-logo.is-style-rounded)\":true},[\"border-radius:9999px\"]],[false,{\".wp-block-site-tagline\":false,\".wp-block-site-title\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-site-title :where(a)\":false},[\"color:inherit\",\"font-family:inherit\",\"font-size:inherit\",\"font-style:inherit\",\"font-weight:inherit\",\"letter-spacing:inherit\",\"line-height:inherit\",\"text-decoration:inherit\"]],[false,{\".wp-block-social-links\":false},[\"background:none\",\"box-sizing:border-box\",\"margin-left:0\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"border-bottom:0\",\"box-shadow:none\",\"text-decoration:none\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"height:1em\",\"width:1em\"]],[false,{\".wp-block-social-links .wp-social-link span:not(.screen-reader-text)\":false},[\"font-size:.65em\",\"margin-left:.5em\",\"margin-right:.5em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"display:flex\",\"justify-content:center\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"border-radius:9999px\",\"display:block\",\"height:auto\"]],[false,\"@media not (prefers-reduced-motion){\"],[false,{\".wp-block-social-link\":false},[\"transition:transform .1s ease\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"align-items:center\",\"display:flex\",\"line-height:0\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link\":false},[\"display:inline-block\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky\":false},[\"background-color:#0a7aff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord\":false},[\"background-color:#5865f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook\":false},[\"background-color:#0866ff\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar\":false},[\"background-color:#1d4fc4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit\":false},[\"background-color:#ff4500\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp\":false},[\"background-color:#25d366\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link\":false},[\"background:none\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg\":false},[\"height:1.25em\",\"width:1.25em\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky\":false},[\"color:#0a7aff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord\":false},[\"color:#5865f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook\":false},[\"color:#0866ff\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar\":false},[\"color:#1d4fc4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit\":false},[\"color:#ff4500\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp\":false},[\"color:#25d366\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x\":false},[\"color:#000\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\":where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[true,{\":root :where(.wp-block-social-links .wp-social-link a)\":true},[\"padding:.25em\"]],[true,{\":root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a)\":true},[\"padding:0\"]],[true,{\":root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a)\":true},[\"padding-left:.6666666667em\",\"padding-right:.6666666667em\"]],[false,{\".wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label\":false},[\"color:#000\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"justify-content:center\",\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-tag-cloud a\":false},[\"display:inline-block\",\"margin-right:5px\"]],[false,{\".wp-block-tag-cloud span\":false},[\"display:inline-block\",\"margin-left:5px\",\"text-decoration:none\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline)\":true},[\"display:flex\",\"flex-wrap:wrap\",\"gap:1ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a)\":true},[\"border:1px solid\",\"margin-right:0\",\"padding:1ch 2ch\"]],[true,{\":root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_)\":true},[\"font-size:unset\",\"text-decoration:none\"]],[false,{\".wp-block-table\":false},[\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"border:1px solid\",\"padding:.5em\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"background-color:initial\",\"border-bottom:1px solid #f0f0f0\",\"border-collapse:inherit\",\"border-spacing:0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:rgba(0,0,0,0)\"]],[false,{\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false,\".wp-block-table .has-border-color>*\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color] tr:first-child th\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-top-color]>* th\":false},[\"border-top-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-top-color] tr:not(:first-child)\":false},[\"border-top-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-right-color] td:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-right-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-right-color]>*\":false},[\"border-right-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:last-child th\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>*\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* td\":false,\".wp-block-table table[data-amp-original-style*=border-bottom-color]>* th\":false},[\"border-bottom-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-bottom-color] tr:not(:last-child)\":false},[\"border-bottom-color:initial\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-left-color] td:first-child\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] th\":false,\".wp-block-table table[data-amp-original-style*=border-left-color] tr\":false,\".wp-block-table table[data-amp-original-style*=border-left-color]>*\":false},[\"border-left-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false,\".wp-block-table table[data-amp-original-style*=border-style]>*\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false,\".wp-block-table table[data-amp-original-style*=border-width]>*\":false},[\"border-style:inherit\",\"border-width:inherit\"]],[true,{\":root :where(.wp-block-table-of-contents)\":true},[\"box-sizing:border-box\"]],[true,{\":where(.wp-block-term-description)\":true},[\"box-sizing:border-box\",\"margin-bottom:var(--wp--style--block-gap)\",\"margin-top:var(--wp--style--block-gap)\"]],[false,{\".wp-block-term-description p\":false},[\"margin-bottom:0\",\"margin-top:0\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.3333333333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"overflow:auto\",\"white-space:pre-wrap\"]],[true,{\":where(pre.wp-block-verse)\":true},[\"font-family:inherit\"]],[false,{\".wp-block-video\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"vertical-align:middle\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video :where(figcaption)\":false},[\"margin-bottom:1em\",\"margin-top:.5em\"]],[false,{\".editor-styles-wrapper\":false,\".entry-content\":false},[\"counter-reset:footnotes\"]],[false,{\"a[data-fn].fn\":false},[\"counter-increment:footnotes\",\"display:inline-flex\",\"font-size:smaller\",\"text-decoration:none\",\"text-indent:-9999999px\",\"vertical-align:super\"]],[false,{\"a[data-fn].fn:after\":false},[\"content:\\\"[\\\" counter(footnotes) \\\"]\\\"\",\"float:left\",\"text-indent:0\"]],[false,{\".wp-element-button\":false},[\"cursor:pointer\"]],[true,{\":root\":true},[\"--wp--preset--font-size--normal:16px\",\"--wp--preset--font-size--huge:42px\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-normal-font-size\":false},[\"font-size:var(--wp--preset--font-size--normal)\"]],[false,{\".has-huge-font-size\":false},[\"font-size:var(--wp--preset--font-size--huge)\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[true,{\"html :where(.has-border-color)\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-color])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-color])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-color])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-color])\":true},[\"border-left-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-width])\":true},[\"border-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-top-width])\":true},[\"border-top-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-right-width])\":true},[\"border-right-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-bottom-width])\":true},[\"border-bottom-style:solid\"]],[true,{\"html :where([data-amp-original-style*=border-left-width])\":true},[\"border-left-style:solid\"]],[true,{\"html :where(amp-img[class*=wp-image-])\":true,\"html :where(amp-anim[class*=wp-image-])\":true},[\"height:auto\",\"max-width:100%\"]],[true,{\":where(figure)\":true},[\"margin:0 0 1em\"]],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)\"]],[true,\"@media screen and (max-width:600px){\"],[true,{\"html :where(.is-position-sticky)\":true},[\"--wp-admin--admin-bar--position-offset:0px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":13983,\"final_size\":3948,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"global-styles-inline-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\\/3;--wp--preset--aspect-ratio--3-4: 3\\/4;--wp--preset--aspect-ratio--3-2: 3\\/2;--wp--preset--aspect-ratio--2-3: 2\\/3;--wp--preset--aspect-ratio--16-9: 16\\/9;--wp--preset--aspect-ratio--9-16: 9\\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--ast-content-width-size);--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2515,\"function\":\"wp_enqueue_global_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2293,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\",\"handle\":\"global-styles\"}],\"priority\":70,\"hash\":\"31c790db6ae2bf95e874b636534a6fa7\",\"parse_time\":0.023661136627197266,\"shake_time\":0.00010919570922851562,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--wp--preset--aspect-ratio--square:1\",\"--wp--preset--aspect-ratio--4-3:4\\/3\",\"--wp--preset--aspect-ratio--3-4:3\\/4\",\"--wp--preset--aspect-ratio--3-2:3\\/2\",\"--wp--preset--aspect-ratio--2-3:2\\/3\",\"--wp--preset--aspect-ratio--16-9:16\\/9\",\"--wp--preset--aspect-ratio--9-16:9\\/16\",\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--color--ast-global-color-0:var(--ast-global-color-0)\",\"--wp--preset--color--ast-global-color-1:var(--ast-global-color-1)\",\"--wp--preset--color--ast-global-color-2:var(--ast-global-color-2)\",\"--wp--preset--color--ast-global-color-3:var(--ast-global-color-3)\",\"--wp--preset--color--ast-global-color-4:var(--ast-global-color-4)\",\"--wp--preset--color--ast-global-color-5:var(--ast-global-color-5)\",\"--wp--preset--color--ast-global-color-6:var(--ast-global-color-6)\",\"--wp--preset--color--ast-global-color-7:var(--ast-global-color-7)\",\"--wp--preset--color--ast-global-color-8:var(--ast-global-color-8)\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\",\"--wp--preset--spacing--20:.44rem\",\"--wp--preset--spacing--30:.67rem\",\"--wp--preset--spacing--40:1rem\",\"--wp--preset--spacing--50:1.5rem\",\"--wp--preset--spacing--60:2.25rem\",\"--wp--preset--spacing--70:3.38rem\",\"--wp--preset--spacing--80:5.06rem\",\"--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2)\",\"--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4)\",\"--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2)\",\"--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1)\",\"--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)\"]],[true,{\":root\":true},[\"--wp--style--global--content-size:var(--ast-content-width-size)\",\"--wp--style--global--wide-size:1200px\"]],[true,{\":where(body)\":true},[\"margin:0\"]],[false,{\".wp-site-blocks > .alignleft\":false},[\"float:left\",\"margin-right:2em\"]],[false,{\".wp-site-blocks > .alignright\":false},[\"float:right\",\"margin-left:2em\"]],[false,{\".wp-site-blocks > .aligncenter\":false},[\"justify-content:center\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\":where(.is-layout-flex)\":true},[\"gap:.5em\"]],[true,{\":where(.is-layout-grid)\":true},[\"gap:.5em\"]],[false,{\".is-layout-flow > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-flow > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-flow > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignleft\":false},[\"float:left\",\"margin-inline-start:0\",\"margin-inline-end:2em\"]],[false,{\".is-layout-constrained > .alignright\":false},[\"float:right\",\"margin-inline-start:2em\",\"margin-inline-end:0\"]],[false,{\".is-layout-constrained > .aligncenter:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))\":false},[\"max-width:var(--wp--style--global--content-size)\"]],[false,{\".is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".is-layout-constrained > .alignwide\":false},[\"max-width:var(--wp--style--global--wide-size)\"]],[false,{\"body .is-layout-flex\":false},[\"display:flex\"]],[false,{\".is-layout-flex\":false},[\"flex-wrap:wrap\",\"align-items:center\"]],[false,{\".is-layout-flex > :is(*, div)\":false},[\"margin:0\"]],[false,{\"body .is-layout-grid\":false},[\"display:grid\"]],[false,{\".is-layout-grid > :is(*, div)\":false},[\"margin:0\"]],[true,{\"body\":true},[\"padding-top:0px\",\"padding-right:0px\",\"padding-bottom:0px\",\"padding-left:0px\"]],[true,{\"a:where(:not(.wp-element-button))\":true},[\"text-decoration:underline\"]],[false,{\".has-black-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-color:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-background-color:not(#_#_#_#_#_#_#_)\":false},[\"background-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-black-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--black)\"]],[false,{\".has-cyan-bluish-gray-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--cyan-bluish-gray)\"]],[false,{\".has-white-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--white)\"]],[false,{\".has-pale-pink-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-pink)\"]],[false,{\".has-vivid-red-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-red)\"]],[false,{\".has-luminous-vivid-orange-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-amber-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--luminous-vivid-amber)\"]],[false,{\".has-light-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--light-green-cyan)\"]],[false,{\".has-vivid-green-cyan-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-green-cyan)\"]],[false,{\".has-pale-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--pale-cyan-blue)\"]],[false,{\".has-vivid-cyan-blue-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-cyan-blue)\"]],[false,{\".has-vivid-purple-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--vivid-purple)\"]],[false,{\".has-ast-global-color-0-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-0)\"]],[false,{\".has-ast-global-color-1-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-1)\"]],[false,{\".has-ast-global-color-2-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-2)\"]],[false,{\".has-ast-global-color-3-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-3)\"]],[false,{\".has-ast-global-color-4-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-4)\"]],[false,{\".has-ast-global-color-5-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-5)\"]],[false,{\".has-ast-global-color-6-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-6)\"]],[false,{\".has-ast-global-color-7-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-7)\"]],[false,{\".has-ast-global-color-8-border-color:not(#_#_#_#_#_#_#_)\":false},[\"border-color:var(--wp--preset--color--ast-global-color-8)\"]],[false,{\".has-vivid-cyan-blue-to-vivid-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple)\"]],[false,{\".has-light-green-cyan-to-vivid-green-cyan-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan)\"]],[false,{\".has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange)\"]],[false,{\".has-luminous-vivid-orange-to-vivid-red-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red)\"]],[false,{\".has-very-light-gray-to-cyan-bluish-gray-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray)\"]],[false,{\".has-cool-to-warm-spectrum-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--cool-to-warm-spectrum)\"]],[false,{\".has-blush-light-purple-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-light-purple)\"]],[false,{\".has-blush-bordeaux-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--blush-bordeaux)\"]],[false,{\".has-luminous-dusk-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--luminous-dusk)\"]],[false,{\".has-pale-ocean-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--pale-ocean)\"]],[false,{\".has-electric-grass-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--electric-grass)\"]],[false,{\".has-midnight-gradient-background:not(#_#_#_#_#_#_#_)\":false},[\"background:var(--wp--preset--gradient--midnight)\"]],[false,{\".has-small-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--small)\"]],[false,{\".has-medium-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--medium)\"]],[false,{\".has-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--large)\"]],[false,{\".has-x-large-font-size:not(#_#_#_#_#_#_#_)\":false},[\"font-size:var(--wp--preset--font-size--x-large)\"]],[true,{\":where(.wp-block-post-template.is-layout-flex)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-post-template.is-layout-grid)\":true},[\"gap:1.25em\"]],[true,{\":where(.wp-block-columns.is-layout-flex)\":true},[\"gap:2em\"]],[true,{\":where(.wp-block-columns.is-layout-grid)\":true},[\"gap:2em\"]],[true,{\":root :where(.wp-block-pullquote)\":true},[\"font-size:1.5em\",\"line-height:1.6\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":18906,\"final_size\":889,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"56fd5df6a4607622d63ca8539d231c32\",\"parse_time\":0.18002700805664062,\"shake_time\":0.0005738735198974609,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"html:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow-x:hidden\"]],[true,{\"html:not([amp4ads]):not(#_#_#_#_#_#_#_#_)\":true,\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"height:auto\"]],[true,{\"html:not([amp4ads]) body:not(#_#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[true,{\"body\":true},[\"-webkit-text-size-adjust:100%\",\"-moz-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"text-size-adjust:100%\"]],[false,{\"amp-instagram\":false},[\"background-color:#fff\"]],[false,{\"amp-instagram:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:54px 0px 0px\"]],[false,{\"amp-iframe iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\"[amp-access][amp-access-hide]\":false},[\"display:none\"]],[false,{\"[subscriptions-dialog]:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-experiment\":false,\"amp-live-list>[update]\":false},[\"display:none\"]],[false,{\"amp-list [fetch-error]\":false,\"amp-list[load-more] [load-more-button]\":false,\"amp-list[load-more] [load-more-end]\":false,\"amp-list[load-more] [load-more-failed]\":false,\"amp-list[load-more] [load-more-loading]\":false},[\"display:none\"]],[false,{\"amp-list[diffable] div[role=list]\":false},[\"display:block\"]],[false,{\"amp-story-page:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"min-height:1px\",\"display:block\",\"height:100%\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"width:100%\"]],[false,{\"amp-story[standalone]:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#000\",\"position:relative\"]],[false,{\"amp-story-page\":false},[\"background-color:#757575\"]],[false,{\"amp-story .amp-active>div:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-story-page:not(:first-of-type):not([distance]):not([active]):not(#_#_#_#_#_#_#_#_)\":false},[\"transform:translateY(1000vh)\"]],[false,{\"amp-autocomplete:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"display:inline-block\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"padding:.5rem\",\"border:1px solid rgba(0,0,0,.33)\"]],[false,{\"amp-autocomplete>input\":false,\"amp-autocomplete>textarea\":false},[\"font-size:1rem\",\"line-height:1.5rem\"]],[false,{\"[amp-fx^=fly-in]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]\":false,\"amp-script[sandboxed]\":false},[\"visibility:hidden\"]],[false,{\"amp-script[nodom]:not(#_#_#_#_#_#_#_#_)\":false,\"amp-script[sandboxed]:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\"[layout=container]\":true},[\"display:block\",\"position:relative\"]],[true,{\"body noscript>*\":true},[\"display:block\",\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"overflow:hidden\"]],[true,{\"body noscript>*\":true},[\"width:100%\",\"height:100%\",\"z-index:2\"]],[true,{\"body noscript>*:not(#_#_#_#_#_#_#_#_)\":true},[\"position:absolute\"]],[true,{\"body noscript:not(#_#_#_#_#_#_#_#_)\":true},[\"display:inline\"]],[false,\"@supports (aspect-ratio:1\\/1){}\"],[false,{\"i-amp-scroll-container\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"display:block\"]],[false,{\"i-amp-scroll-container.amp-active\":false},[\"overflow:auto\",\"-webkit-overflow-scrolling:touch\"]],[false,{\"template:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".amp-border-box\":false,\".amp-border-box *\":false,\".amp-border-box :after\":false,\".amp-border-box :before\":false},[\"box-sizing:border-box\"]],[false,{\"amp-pixel:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"amp-analytics\":false,\"amp-auto-ads\":false,\"amp-story-auto-ads\":false},[\"visibility:hidden\"]],[false,{\"amp-analytics:not(#_#_#_#_#_#_#_#_)\":false,\"amp-auto-ads:not(#_#_#_#_#_#_#_#_)\":false,\"amp-story-auto-ads:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0\",\"width:1px\",\"height:1px\",\"overflow:hidden\"]],[false,{\"[visible-when-invalid]:not(.visible)\":false,\"form [submit-error]\":false,\"form [submit-success]\":false,\"form [submitting]\":false},[\"display:none\"]],[false,{\"amp-accordion:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"@media (min-width:1px){\"],[true,{\":where(amp-accordion>section)>:first-child\":true},[\"margin:0\",\"background-color:#efefef\",\"padding-right:20px\",\"border:1px solid #dfdfdf\"]],[true,{\":where(amp-accordion>section)>:last-child\":true},[\"margin:0\"]],[true,\"}\"],[false,{\"amp-accordion>section:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,{\"amp-accordion>section>*:not(#_#_#_#_#_#_#_#_)\":false},[\"float:none\",\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"amp-accordion\":false,\"amp-accordion>section\":false},[\"margin:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":38885,\"final_size\":16645,\"element\":{\"name\":\"style\",\"attributes\":{\"amp-custom\":\"\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"57e5701f0a3e0b4437f92e97599f1f36\",\"parse_time\":0.0514369010925293,\"shake_time\":0.0004470348358154297,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"webfonts\\/digital_sans_ef_medium.woff2\",\"webfonts\\/advanced_dot_digital7.eot\",\"webfonts\\/fa-brands-400.eot#iefix\",\"webfonts\\/fa-regular-400.eot#iefix\",\"webfonts\\/fa-solid-900.eot#iefix\",\"webfonts\\/Lato-Regular.woff2\"],\"shaken_tokens\":[[true,\"@media screen{\"],[true,{\"html\":true},[\"height:100%\",\"font-size:1em\",\"font-size:100%\",\"line-height:1.4\",\"margin:0\",\"padding:0\",\"border:0\",\"vertical-align:baseline\"]],[true,{\"body\":true},[\"margin:0\",\"font-size:14px\",\"line-height:1.5\",\"letter-spacing:.1px\",\"color:#fff\",\"background:#020000\",\"font-family:\\\"digital_sans_ef_medium\\\"\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":false},[\"color:#11a54f\",\"line-height:1.2\",\"margin:15px 0px\",\"font-weight:500\"]],[true,{\"h1\":true},[\"font-size:30px\"]],[true,{\"h2\":true},[\"font-size:27px\"]],[false,{\"h3\":false},[\"font-size:23px\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"-moz-box-sizing:border-box\",\"box-sizing:border-box\"]],[true,{\"a\":true},[\"color:#11a54f\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:#fff\"]],[true,{\"div\":true,\"input\":true,\"label\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[false,{\"strong\":false},[\"color:#11a54f\"]],[true,{\"amp-img\":true,\"amp-anim\":true},[\"width:100%\",\"height:100%\",\"pointer-events:none\"]],[true,{\"a amp-img\":true,\"a amp-anim\":true},[\"pointer-events:visible\"]],[false,{\".entry-content ol li\":false},[\"list-style:decimal\",\"padding:5px 0px\",\"display:list-item\",\"float:none\"]],[true,{\".mobile\":true},[\"display:none\"]],[true,\"@font-face{font-family:\\\"digital_sans_ef_medium\\\";src:url(\\\"webfonts\\/digital_sans_ef_medium.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/digital_sans_ef_medium.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}@font-face{font-family:\\\"advanced_dot_digital7\\\";src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\");src:url(\\\"webfonts\\/advanced_dot_digital7.eot\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/advanced_dot_digital7.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/advanced_dot_digital7.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/advanced_dot_digital7.svg#advanced_dot_digital7\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(\\\"webfonts\\/fa-brands-400.eot\\\");src:url(\\\"webfonts\\/fa-brands-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-brands-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-brands-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(\\\"webfonts\\/fa-regular-400.eot\\\");src:url(\\\"webfonts\\/fa-regular-400.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-regular-400.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-regular-400.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(\\\"webfonts\\/fa-solid-900.eot\\\");src:url(\\\"webfonts\\/fa-solid-900.eot#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/fa-solid-900.woff\\\") format(\\\"woff\\\"),url(\\\"webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\"),url(\\\"webfonts\\/fa-solid-900.svg#fontawesome\\\") format(\\\"svg\\\")}@font-face{font-family:\\\"LatoWeb\\\";src:url(\\\"webfonts\\/Lato-Regular.woff2\\\") format(\\\"woff2\\\"),url(\\\"webfonts\\/Lato-Regular.woff\\\") format(\\\"woff\\\");font-weight:normal;font-style:normal}\"],[true,{\".svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:18px\",\"background-repeat:no-repeat\"]],[true,{\".svg-beranda\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-beranda.png\\\")\"]],[true,{\".svg-content\":true},[\"display:inline-block\",\"width:25px\",\"height:20px\",\"background-size:21px\",\"background-repeat:no-repeat\"]],[true,{\".svg-sport\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-sports.png\\\")\"]],[true,{\".svg-casino\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-casino.png\\\")\"]],[true,{\".svg-slots\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-slots.png\\\")\"]],[true,{\".svg-togel\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-togel.png\\\")\"]],[true,{\".svg-fishing\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-fishing.png\\\")\"]],[true,{\".svg-poker\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/poker.png\\\")\"]],[true,{\".svg-gift\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gift.png\\\")\"]],[true,{\".svg-new\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-new.svg\\\")\"]],[true,{\".svg-populer\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-populer.svg\\\")\"]],[true,{\".svg-gacor\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-gacor.svg\\\")\"]],[true,{\".svg-whatsapp\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp.png\\\")\"]],[true,{\".svg-telegram\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram.png\\\")\"]],[false,{\".svg-login\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/login.png\\\")\"]],[true,{\".svg-livechat\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat.png\\\")\"]],[false,{\".svg-whatsapp-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-whatsapp-gray.png\\\")\"]],[false,{\".svg-telegram-gray\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-telegram-gray.png\\\")\"]],[true,{\".svg-livechat-gray\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-livechat-gray.svg\\\")\"]],[false,{\".svg-unduh\":false},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/icon-unduh.png\\\")\"]],[true,{\".svg-hot\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/icon\\/hot-games.png\\\")\"]],[true,{\".header\":true},[\"width:100%\",\"z-index:999999\",\"position:fixed\",\"background:#191919\"]],[true,{\".top-left\":true},[\"float:left\",\"width:27%\",\"display:flex\",\"justify-content:flex-start\"]],[true,{\".top-right\":true},[\"line-height:1.2\",\"font-size:11px\",\"float:right\",\"width:70%\"]],[true,{\".site-logo\":true},[\"float:left\",\"top:12px\",\"left:0px\",\"width:24%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:200px\"]],[true,{\".nav-bar\":true},[\"background-color:(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #2b2b2b\"]],[true,{\".sticky\":true},[\"height:127px\"]],[true,{\".main\":true},[\"background:#191919\"]],[true,{\".slide\":true},[\"margin-bottom:17px\"]],[true,{\".jackpot amp-img\":true,\".jackpot amp-anim\":true},[\"margin-left:auto\",\"margin-right:auto\",\"display:block\",\"border-radius:9px\"]],[true,{\".container\":true},[\"max-width:1170px\",\"width:100%\",\"margin:auto\",\"overflow:hidden\"]],[true,{\".row\":true},[\"width:100%\",\"height:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[true,{\".col-sm-2\":true},[\"flex:0 0 15.9%\",\"max-width:15.9%\",\"margin:5px 4px\",\"justify-content:center\",\"align-content:center\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[true,{\".col-title\":true},[\"padding:9px 0px\",\"position:absolute\",\"top:-14px\",\"left:21px\",\"z-index:2\",\"background:#101013\"]],[true,{\".col-border\":true},[\"border:1px solid #333\",\"border-radius:7px\",\"margin:5px auto\",\"padding:18px\"]],[true,{\".payment .col-sm-12\":true},[\"margin:10px auto\"]],[false,{\".post-taxonomies\":false},[\"padding:20px 0\"]],[false,{\".post-taxonomies .container\":false},[\"border-bottom:1px solid #333\"]],[false,{\".tags-title\":false},[\"font-size:19px\"]],[false,{\".tags-title\":false,\".tags-links\":false},[\"text-align:center\",\"padding:10px 0\"]],[false,{\".tags-links a\":false},[\"background:#503000\",\"display:inline-block\",\"border-radius:8px\",\"padding:15px 20px\",\"color:#fff\"]],[true,{\".main-menu i\":true},[\"display:block\",\"margin:auto\",\"width:30px\",\"height:30px\",\"background-size:26px\"]],[true,{\"ul.menu\":true,\"ul.contact-us\":true,\"ul.main-menu\":true},[\"padding:0\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".main-menu\":true},[\"float:right\"]],[true,{\".main-menu li [aria-current]\":true,\".main-menu li a:hover\":true},[\"color:#11a54f\"]],[true,{\".main-menu li\":true},[\"position:relative\",\"display:block\",\"float:left\",\"margin:0\",\"padding:0\"]],[true,{\".main-menu li a\":true},[\"font-size:14px\",\"position:relative\",\"display:inline-block\",\"line-height:18px\",\"padding:20px 24px\",\"flex:1\",\"color:#a3a3a3\"]],[true,{\"ul.contact-us\":true},[\"padding:15px 0\",\"text-transform:capitalize\"]],[true,{\".contact-us\":true},[\"float:right\",\"height:36px\"]],[true,{\".contact-us li\":true},[\"border-right:dotted 1px #fff\",\"padding-left:10px\",\"padding-right:10px\",\"display:inline-block\",\"float:left\"]],[true,{\".site-footer\":true},[\"display:block\",\"margin:auto\",\"max-width:200px\",\"margin-bottom:20px\"]],[true,{\".contact-us li:first-child\":true},[\"padding-right:10px\",\"border-left:0\"]],[true,{\".contact-us li:last-child\":true},[\"padding-right:10px\",\"border-right:0\"]],[true,{\".contact-us li a\":true},[\"color:#9a9a9a\",\"font-size:11px\"]],[true,{\".contact-us li a:hover\":true},[\"color:#11a54f\"]],[true,{\".contact-us .svg-menu\":true},[\"height:20px\",\"width:20px\",\"display:inline-block\",\"background-size:17px\",\"background-repeat:no-repeat\"]],[true,{\".contact-us li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer\":true},[\"position:fixed\",\"width:170px\",\"height:40px\",\"bottom:0px\",\"right:10px\",\"background:#e8911a\",\"border-radius:5px 5px 0px 0px\",\"z-index:100\",\"padding:2px\"]],[true,{\".quick-footer i\":true},[\"font-size:22px\",\"position:relative\",\"right:-42px\",\"top:-2px\"]],[true,{\".quick-footer li\":true},[\"margin:1px auto\",\"padding:4px 12px\"]],[true,{\".quick-footer li a\":true},[\"color:#fff\",\"display:flex\",\"align-items:end\",\"text-align:center\",\"font-size:19px\",\"text-transform:uppercase\"]],[true,{\".quick-footer li i\":true},[\"vertical-align:middle\"]],[true,{\".quick-footer .svg-menu\":true},[\"height:30px\",\"width:30px\",\"display:inline-block\",\"background-size:30px\",\"background-repeat:no-repeat\"]],[true,{\".menu\":true},[\"float:right\",\"position:relative\",\"padding:0px\",\"margin:0px auto\"]],[true,{\".menu li\":true},[\"float:left\",\"position:relative\",\"font-size:14px\",\"text-transform:uppercase\",\"min-width:68px\",\"margin:0px 0px 0px 4px\",\"text-align:center\",\"padding:5px 5px\",\"vertical-align:inherit\",\"border-radius:27px\"]],[true,{\".menu ul\":true},[\"padding-top:15px\",\"border-radius:0px 0px 4px 4px\",\"-webkit-border-radius:0px 0px 4px 4px\",\"-moz-border-radius:0px 0px 4px 4px\",\"-ms-border-radius:0px 0px 4px 4px\",\"-o-border-radius:0px 0px 4px 4px\"]],[true,{\".menu li a\":true},[\"padding:4px 21px\",\"display:block\",\"color:#fff\",\"text-shadow:0px 0px 3px #000\"]],[true,{\".daftar\":true,\".quick-footer\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"border-top:1px solid #11a54f\"]],[true,{\".daftar:hover\":true},[\"background:#115f13\",\"background-image:-webkit-linear-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\"]],[true,{\".login\":true},[\"background:#505050\",\"border-top:1px solid #7e7e7e\"]],[true,{\".login:hover\":true},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".rtp\":false},[\"background:#505050\",\"background-image:linear-gradient(to bottom,#0ef,#001aff)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".rtp:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#9e9e9e 0%,#666 100%)\"]],[false,{\".alternatif\":false},[\"background:#c8ff00\",\"background-image:linear-gradient(to bottom,#ffae00,#c8ff00)\",\"border-top:1px solid #7e7e7e\"]],[false,{\".alternatif:hover\":false},[\"background:#00490c\",\"background-image:-webkit-linear-gradient(top,#c8ff00 0%,#ffae00 100%)\"]],[true,{\".login-panel\":true},[\"margin:6px 0\"]],[true,{\"ul\":true,\"ol\":true},[\"list-style:none\",\"margin:0\",\"padding:5px 0px\"]],[true,{\"ul.article\":true},[\"list-style:circle\",\"padding:5px 30px\"]],[true,{\".article li\":true},[\"list-style:disc\",\"margin:0px 35px\"]],[true,{\".article ol li\":true},[\"list-style:decimal\"]],[true,{\".ct-rounded\":true,\".ct-rounded amp-img\":true,\".ct-rounded amp-anim\":true,\".ct-rounded .col-sm-2\":true,\".bg-rounded .container\":true},[\"border-radius:12px\"]],[true,{\".bg-rounded .container\":true},[\"padding:25px\",\"background:#020206\",\"margin-bottom:30px\"]],[true,{\".ct-rounded\":true},[\"padding:15px\",\"background:#160002\",\"border:3px solid #11a54f\",\"margin:10px auto\"]],[true,{\".ct-rounded .col-sm-2\":true},[\"background:radial-gradient(circle at -1% 57.5%,#13aa52 0%,#00662b 90%)\",\"padding:2px\",\"height:100%\"]],[true,{\".game-wrapper\":true},[\"height:200px\",\"z-index:0\"]],[true,{\".game-img\":true},[\"position:absolute\",\"width:100%\",\"top:0\",\"z-index:0\"]],[true,{\".image-wrapper\":true},[\"z-index:0\"]],[true,{\".games-wrapper\":true},[\"position:absolute\",\"width:100%\",\"height:100%\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[true,{\".title-row\":true},[\"margin:21px auto\",\"border-bottom:3px solid #11a54f\",\"font-size:19px\",\"display:flex\",\"align-items:center\"]],[true,{\".title-games\":true},[\"font-size:14px\",\"padding:4px 10px 8px\",\"color:#fff\",\"text-overflow:ellipsis\",\"white-space:nowrap\",\"text-align:center\"]],[true,{\".footer\":true},[\"width:100%\",\"background:#101013\",\"padding:0px 0px 20px 0px\"]],[true,{\".disclaimer\":true},[\"border-top:1px dotted #101013\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"height:auto\"]],[true,{\".footer-title\":true},[\"font-size:15px\",\"color:#d5d5d5\",\"margin:20px auto\"]],[true,{\".footer .row\":true},[\"justify-content:left\"]],[true,{\".footer .col-sm-2\":true},[\"justify-content:left\"]],[true,{\".provider .col-sm-2\":true,\".payment .col-sm-2\":true},[\"max-width:111px\",\"margin:7px\"]],[true,{\".copyright\":true},[\"font-size:11px\",\"padding:15px 0px\",\"text-align:center\"]],[true,{\".copyright a\":true},[\"color:#aaa\",\"display:inline-block\"]],[true,{\".article\":true},[\"text-align:center\"]],[true,\"@media only screen and (max-width: 768px){\"],[true,{\".main-slide amp-img\":true,\".main-slide amp-anim\":true},[\"height:100%\"]],[true,{\".main-menu\":true,\".top-header\":true},[\"display:none\"]],[true,{\".mobile\":true},[\"display:block\"]],[true,{\".desktop\":true},[\"display:none\"]],[true,{\".header\":true},[\"z-index:999999\",\"height:65px\",\"position:fixed\",\"background:#151515\"]],[true,{\".nav-bar\":true},[\"border:0\"]],[true,{\".sticky\":true},[\"height:65px\"]],[true,{\".site-logo\":true},[\"top:9px\",\"left:0px\",\"right:0\",\"width:149px\",\"float:none\",\"margin:auto\",\"position:absolute\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"width:150px\",\"margin-left:auto\",\"margin-right:auto\"]],[true,{\".top-header\":true},[\"top:0px\",\"left:0px\",\"margin:auto\",\"width:100%\"]],[true,{\".menu-mobile\":true,\".menu-login-menu-container\":true,\".slide\":true},[\"width:100%\",\"margin:auto\"]],[true,{\".menu-mobile .menu li\":true},[\"background-image:-webkit-linear-gradient(top,#ababab 0%,#585858 100%)\"]],[true,{\".menu\":true},[\"float:none\"]],[true,{\".main-homepage\":true},[\"background:#131313\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\",\"border-radius:7px\",\"margin-bottom:5px\",\"display:inline-block\"]],[true,{\".main-homepage li a\":true},[\"padding:7px\",\"font-size:14px\",\"display:flex\",\"align-items:center\",\"flex-wrap:nowrap\",\"flex-direction:column\",\"color:#8b8b8b\"]],[true,{\".main-homepage li .svg-menu\":true},[\"height:30px\",\"width:25px\",\"background-size:25px\"]],[true,{\".login-mobile\":true},[\"padding:0\"]],[true,{\".login-mobile li\":true},[\"display:inline-block\",\"border-radius:2px\",\"width:49.5%\",\"text-align:center\"]],[true,{\".login-mobile li a\":true},[\"color:#fff\",\"font-size:18px\",\"padding:9px 20px\",\"display:block\",\"text-shadow:0px 0px 3px #000\"]],[true,{\"ul.nav-item\":true},[\"padding:0\"]],[true,{\".nav-item li a i\":true},[\"vertical-align:middle\"]],[true,{\".nav-item li\":true},[\"background:#1a1a1a\",\"position:relative\",\"line-height:20px\",\"display:inline-block\",\"width:100%\"]],[true,{\".nav-item li a\":true},[\"text-transform:capitalize\",\"display:block\",\"color:#ddd\",\"text-decoration:none\",\"padding:10px 15px\"]],[true,{\".nav-item li:hover\":true},[\"background-color:#393939\"]],[true,{\".nav-item li [aria-current]\":true},[\"background-color:#393939\",\"display:block\",\"width:100%\"]],[true,{\".nav-item li:before\":true},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"z-index:-1\",\"height:100%\",\"width:3px\",\"background-color:#393939\"]],[true,{\".contact-floating\":true},[\"position:fixed\",\"bottom:0\",\"background:#1e1e1e\",\"width:100%\",\"padding:3px\",\"z-index:3\"]],[true,{\".contact-floating li a\":true},[\"font-size:13px\",\"color:#fff\"]],[true,{\".contact-floating li\":true},[\"display:inline-block\",\"width:32%\",\"text-align:center\",\"padding:5px 0px\"]],[true,{\".contact-floating li i\":true},[\"display:block\",\"margin:auto\",\"background-size:25px\",\"width:25px\",\"height:25px\"]],[true,{\".main\":true},[\"background:#020206\"]],[true,{\".slide\":true},[\"border:0\"]],[true,{\".main-slide\":true},[\"width:100%\"]],[true,{\".bg-rounded .container\":true},[\"padding:5px\",\"background:#020204\",\"margin-bottom:0\"]],[true,{\".ct-rounded\":true},[\"padding:0\",\"background:none\",\"border:0\"]],[true,{\".games .col-sm-2\":true},[\"max-width:31%\",\"flex:0 0 31%\",\"margin:4px\"]],[true,{\".game-wrapper\":true},[\"height:150px\"]],[true,{\".title-row\":true},[\"margin:10px 10px\",\"text-align:center\"]],[true,{\".footer amp-img\":true,\".footer amp-anim\":true},[\"width:100%\",\"height:auto\"]],[true,{\".footer .col-sm-2\":true},[\"max-width:21%\",\"flex:0 0 21%\",\"margin:4px\"]],[true,{\".footer-title\":true},[\"width:max-content\"]],[true,{\".footer .container\":true},[\"padding:0px 10px\"]],[true,{\".copyright\":true},[\"text-align:center\"]],[true,{\".quick-footer\":true},[\"width:44%\"]],[true,{\".quick-footer li\":true},[\"padding:0px 7px\"]],[true,{\"#side-opener\":true},[\"display:none\"]],[true,{\"input .tg\":true},[\"display:block\",\"overflow:hidden\",\"position:relative\"]],[true,{\".tg:checked+.page-content\":true},[\"right:272px\"]],[true,{\".page-sidebar\":true},[\"background-color:#1a1a1a\",\"width:272px\",\"display:block\",\"z-index:2\",\"top:0px\",\"right:0px\",\"bottom:0px\",\"overflow:hidden\",\"position:fixed\",\"border-right:1px solid #353535\"]],[true,{\".page-sidebar-scroll\":true},[\"z-index:2\",\"overflow:scroll\",\"overflow-x:hidden\",\"height:100%\",\"padding:0px 0px 0px 3px\",\"width:100%\",\"top:-1px\"]],[true,{\".page-content\":true},[\"z-index:10\",\"right:0\",\"display:block\",\"min-height:580px\",\"transition:all .25s ease-out\",\"-webkit-transition:all .25s ease-out\",\"background-color:#0a0a0a\"]],[true,{\".deploy-sidebar\":true},[\"background-image:url(\\\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/deploy-nav.png\\\")\",\"background-repeat:no-repeat\",\"background-position:9px 21px\",\"background-size:28px 19px\",\"height:60px\",\"max-width:44px\",\"z-index:50\",\"width:20%\",\"float:right\",\"top:1px\",\"right:10px\"]],[true,{\".sidebar-shortcuts\":true},[\"width:100%\",\"height:1px\",\"background-color:#333\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 328px){\"],[true,{\".site-logo\":true},[\"width:38%\"]],[true,{\".site-logo amp-img\":true,\".site-logo amp-anim\":true},[\"max-width:100%\",\"height:auto\"]],[true,{\".login-mobile li a\":true},[\"padding:5px 9px\",\"font-size:11px\"]],[true,{\".main-homepage li\":true},[\"width:23.4%\"]],[true,{\".main-homepage li\":true},[\"margin-bottom:17px\"]],[true,{\".main-homepage li a\":true},[\"top:76px\"]],[true,{\".slide\":true},[\"height:102px\"]],[true,{\".quick-footer i\":true},[\"right:-13px\"]],[true,{\".page-sidebar\":true},[\"width:200px\"]],[true,{\".tg:checked+.page-content\":true},[\"left:202px\"]],[true,\"}\"],[true,\"}\"],[true,{\"amp-anim.amp-wp-enforced-sizes\":true,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[true,{\"amp-anim img\":true,\"amp-anim noscript\":true,\"amp-img img\":true,\"amp-img noscript\":true},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]],[true,{\"body\":true},[\"--wp--preset--color--black:#000\",\"--wp--preset--color--cyan-bluish-gray:#abb8c3\",\"--wp--preset--color--white:#fff\",\"--wp--preset--color--pale-pink:#f78da7\",\"--wp--preset--color--vivid-red:#cf2e2e\",\"--wp--preset--color--luminous-vivid-orange:#ff6900\",\"--wp--preset--color--luminous-vivid-amber:#fcb900\",\"--wp--preset--color--light-green-cyan:#7bdcb5\",\"--wp--preset--color--vivid-green-cyan:#00d084\",\"--wp--preset--color--pale-cyan-blue:#8ed1fc\",\"--wp--preset--color--vivid-cyan-blue:#0693e3\",\"--wp--preset--color--vivid-purple:#9b51e0\",\"--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%)\",\"--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%)\",\"--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)\",\"--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%)\",\"--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%)\",\"--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%)\",\"--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%)\",\"--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%)\",\"--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%)\",\"--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%)\",\"--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%)\",\"--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%)\",\"--wp--preset--duotone--dark-grayscale:url(\\\"#wp-duotone-dark-grayscale\\\")\",\"--wp--preset--duotone--grayscale:url(\\\"#wp-duotone-grayscale\\\")\",\"--wp--preset--duotone--purple-yellow:url(\\\"#wp-duotone-purple-yellow\\\")\",\"--wp--preset--duotone--blue-red:url(\\\"#wp-duotone-blue-red\\\")\",\"--wp--preset--duotone--midnight:url(\\\"#wp-duotone-midnight\\\")\",\"--wp--preset--duotone--magenta-yellow:url(\\\"#wp-duotone-magenta-yellow\\\")\",\"--wp--preset--duotone--purple-green:url(\\\"#wp-duotone-purple-green\\\")\",\"--wp--preset--duotone--blue-orange:url(\\\"#wp-duotone-blue-orange\\\")\",\"--wp--preset--font-size--small:13px\",\"--wp--preset--font-size--medium:20px\",\"--wp--preset--font-size--large:36px\",\"--wp--preset--font-size--x-large:42px\"]]],\"included\":true}]'),
(1432,69,'_wp_old_date','2025-10-08'),
(1433,70,'_wp_old_date','2025-10-08'),
(1434,133,'_wp_old_date','2025-10-08'),
(1435,72,'_wp_old_date','2025-10-08'),
(1439,292,'_wp_old_date','2025-10-09'),
(1441,294,'_wp_old_date','2025-10-09'),
(1443,296,'_wp_old_date','2025-10-10'),
(1445,298,'_wp_old_date','2025-10-10'),
(1446,300,'_edit_last','1'),
(1448,300,'_edit_lock','1760037979:1'),
(1450,300,'_wp_old_date','2025-10-10'),
(1452,303,'_wp_old_date','2025-10-10'),
(1453,305,'_edit_last','1'),
(1455,305,'_edit_lock','1760038160:1'),
(1457,305,'_wp_old_date','2025-10-10'),
(1459,308,'_wp_old_date','2025-10-10'),
(1460,310,'_edit_last','1'),
(1462,310,'_edit_lock','1760038286:1'),
(1463,310,'_wp_old_date','2025-10-10'),
(1465,313,'_wp_old_date','2025-10-10'),
(1466,315,'_edit_last','1'),
(1468,315,'_edit_lock','1760038401:1'),
(1470,315,'_wp_old_date','2025-10-10'),
(1475,324,'_wp_old_date','2025-10-10'),
(1478,328,'_wp_old_date','2025-10-10'),
(1480,330,'_wp_old_date','2025-10-10'),
(1485,338,'_wp_old_date','2025-10-11'),
(1487,340,'_wp_old_date','2025-10-11'),
(1489,342,'_wp_old_date','2025-10-11'),
(1491,344,'_wp_old_date','2025-10-11'),
(1493,346,'_wp_old_date','2025-10-11'),
(1496,350,'_wp_old_date','2025-10-11'),
(1498,352,'_wp_old_date','2025-10-11'),
(1500,354,'_wp_old_date','2025-10-11'),
(1502,356,'_wp_old_date','2025-10-11'),
(1503,358,'_wp_attached_file','2025/10/sdluxvoioayldjpdqpfvnniv.jpg'),
(1504,358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:418;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2025/10/sdluxvoioayldjpdqpfvnniv.jpg\";s:8:\"filesize\";i:33763;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"sdluxvoioayldjpdqpfvnniv-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"sdluxvoioayldjpdqpfvnniv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4953;}}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:{}}}'),
(1505,359,'_wp_attached_file','2025/10/devushki-po-vyzovu-v-ufe-kogo-vybirajut-zhenatye_1.jpg'),
(1506,359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:62:\"2025/10/devushki-po-vyzovu-v-ufe-kogo-vybirajut-zhenatye_1.jpg\";s:8:\"filesize\";i:63271;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"devushki-po-vyzovu-v-ufe-kogo-vybirajut-zhenatye_1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28638;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"devushki-po-vyzovu-v-ufe-kogo-vybirajut-zhenatye_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1650215530\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1508,360,'_wp_old_date','2025-10-11'),
(1509,362,'_wp_attached_file','2025/10/cujuogjjkajeebrqmxdiabbx.jpg'),
(1510,362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2025/10/cujuogjjkajeebrqmxdiabbx.jpg\";s:8:\"filesize\";i:37546;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"cujuogjjkajeebrqmxdiabbx-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"cujuogjjkajeebrqmxdiabbx-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5644;}}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:{}}}'),
(1511,363,'_wp_attached_file','2025/10/ctptjkcygjosafqqodrebaxy.jpg'),
(1512,363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2025/10/ctptjkcygjosafqqodrebaxy.jpg\";s:8:\"filesize\";i:44452;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"ctptjkcygjosafqqodrebaxy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"ctptjkcygjosafqqodrebaxy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6952;}}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:{}}}'),
(1514,364,'_wp_old_date','2025-10-11'),
(1515,366,'_wp_attached_file','2025/10/prostitutki-vladivostoka-komu-ne-nuzhny-lishnie_1.jpg'),
(1516,366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:337;s:6:\"height\";i:600;s:4:\"file\";s:61:\"2025/10/prostitutki-vladivostoka-komu-ne-nuzhny-lishnie_1.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"prostitutki-vladivostoka-komu-ne-nuzhny-lishnie_1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"prostitutki-vladivostoka-komu-ne-nuzhny-lishnie_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5194;}}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:{}}}'),
(1518,367,'_wp_old_date','2025-10-11'),
(1520,369,'_wp_old_date','2025-10-12'),
(1524,375,'_wp_old_date','2025-10-12'),
(1526,377,'_wp_old_date','2025-10-12'),
(1527,379,'_wp_attached_file','2025/10/0727947953nbt0034479719rpeqxuxu.jpg'),
(1528,379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2025/10/0727947953nbt0034479719rpeqxuxu.jpg\";s:8:\"filesize\";i:39803;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"0727947953nbt0034479719rpeqxuxu-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"0727947953nbt0034479719rpeqxuxu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4537;}}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:{}}}'),
(1529,380,'_wp_attached_file','2025/10/2045698746mnk1316699565tecqiujp.jpg'),
(1530,380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:454;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2025/10/2045698746mnk1316699565tecqiujp.jpg\";s:8:\"filesize\";i:33099;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2045698746mnk1316699565tecqiujp-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10609;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2045698746mnk1316699565tecqiujp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4479;}}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:{}}}'),
(1532,381,'_wp_old_date','2025-10-12'),
(1533,383,'_wp_attached_file','2025/10/0189582898igk1953544275ntyejrwu.jpg'),
(1534,383,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2025/10/0189582898igk1953544275ntyejrwu.jpg\";s:8:\"filesize\";i:57047;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"0189582898igk1953544275ntyejrwu-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"0189582898igk1953544275ntyejrwu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6571;}}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:{}}}'),
(1536,384,'_wp_old_date','2025-10-12'),
(1537,386,'_wp_attached_file','2025/10/1587204241gvu1670631628klavbmtx.jpg'),
(1538,386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:525;s:4:\"file\";s:43:\"2025/10/1587204241gvu1670631628klavbmtx.jpg\";s:8:\"filesize\";i:26973;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"1587204241gvu1670631628klavbmtx-193x300.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"1587204241gvu1670631628klavbmtx-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5113;}}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:{}}}'),
(1540,387,'_wp_old_date','2025-10-12'),
(1545,395,'_wp_old_date','2025-10-13'),
(1547,397,'_wp_old_date','2025-10-13'),
(1549,399,'_wp_old_date','2025-10-13'),
(1552,403,'_wp_old_date','2025-10-13'),
(1554,405,'_wp_old_date','2025-10-13'),
(1556,407,'_wp_old_date','2025-10-13'),
(1558,411,'_edit_lock','1760336871:1'),
(1559,411,'_edit_last','1'),
(1562,411,'_wp_old_date','2025-10-13'),
(1565,416,'_wp_old_date','2025-10-13'),
(1567,418,'_wp_old_date','2025-10-13'),
(1569,420,'_wp_old_date','2025-10-13'),
(1571,422,'_wp_old_date','2025-10-13'),
(1573,424,'_wp_old_date','2025-10-13'),
(1575,426,'_wp_old_date','2025-10-14'),
(1577,428,'_wp_old_date','2025-10-14'),
(1579,430,'_wp_old_date','2025-10-14'),
(1581,432,'_wp_old_date','2025-10-14'),
(1585,438,'_wp_old_date','2025-10-14'),
(1586,440,'_edit_lock','1760425221:1'),
(1587,440,'_edit_last','1'),
(1590,440,'_wp_old_date','2025-10-14'),
(1592,445,'_edit_lock','1760425363:1'),
(1593,445,'_edit_last','1'),
(1596,445,'_wp_old_date','2025-10-14'),
(1598,448,'_wp_old_date','2025-10-14'),
(1599,450,'_edit_lock','1760425448:1'),
(1600,450,'_edit_last','1'),
(1603,450,'_wp_old_date','2025-10-14'),
(1606,455,'_wp_old_date','2025-10-14'),
(1608,457,'_wp_old_date','2025-10-14'),
(1610,459,'_wp_old_date','2025-10-14'),
(1613,463,'_wp_old_date','2025-10-14'),
(1615,465,'_wp_old_date','2025-10-14'),
(1618,469,'_wp_old_date','2025-10-14'),
(1620,471,'_wp_old_date','2025-10-14'),
(1622,473,'_wp_old_date','2025-10-14'),
(1624,475,'_wp_old_date','2025-10-14'),
(1627,479,'_wp_old_date','2025-10-14'),
(1629,481,'_wp_old_date','2025-10-14'),
(1631,483,'_wp_old_date','2025-10-14'),
(1633,485,'_wp_old_date','2025-10-14'),
(1636,489,'_wp_old_date','2025-10-14'),
(1638,491,'_wp_old_date','2025-10-14'),
(1640,493,'_wp_old_date','2025-10-14'),
(1642,495,'_wp_old_date','2025-10-14'),
(1645,499,'_wp_old_date','2025-10-15'),
(1647,501,'_wp_old_date','2025-10-15'),
(1649,503,'_wp_old_date','2025-10-15'),
(1651,505,'_wp_old_date','2025-10-15'),
(1655,511,'_wp_old_date','2025-10-15'),
(1657,513,'_wp_old_date','2025-10-15'),
(1661,519,'_wp_old_date','2025-10-15'),
(1664,523,'_wp_old_date','2025-10-15'),
(1667,527,'_wp_old_date','2025-10-15'),
(1669,529,'_wp_old_date','2025-10-15'),
(1670,532,'_edit_lock','1760514944:1'),
(1671,532,'_edit_last','1'),
(1674,532,'_wp_old_date','2025-10-15'),
(1676,535,'_wp_old_date','2025-10-15'),
(1677,537,'_edit_lock','1760515044:1'),
(1678,537,'_edit_last','1'),
(1681,537,'_wp_old_date','2025-10-15'),
(1684,544,'_edit_lock','1760515177:1'),
(1685,544,'_edit_last','1'),
(1687,546,'_edit_lock','1760515213:1'),
(1688,546,'_edit_last','1'),
(1691,546,'_wp_old_date','2025-10-15'),
(1693,549,'_wp_old_date','2025-10-15'),
(1695,551,'_wp_old_date','2025-10-15'),
(1697,553,'_wp_old_date','2025-10-15'),
(1699,555,'_wp_old_date','2025-10-15'),
(1700,555,'_oembed_9fdc576e94a27271f73e6f6fc090f559','{{unknown}}'),
(1701,555,'_oembed_fffb480afed08aad9579a31c585465b1','{{unknown}}'),
(1704,559,'_wp_old_date','2025-10-15'),
(1706,561,'_wp_old_date','2025-10-15'),
(1707,561,'_oembed_f9b9b124aa54e5d76e3e770bcb32994e','{{unknown}}'),
(1708,561,'_oembed_65840761a865d7c702894d0b08e929b6','{{unknown}}'),
(1709,561,'_oembed_cb54bd5d7a03417b35d2e9f2ab967bd1','{{unknown}}'),
(1711,563,'_wp_old_date','2025-10-15'),
(1712,563,'_oembed_e6f45f382b95e3cc42e7db3220c0b685','{{unknown}}'),
(1713,563,'_oembed_86e40cc019b9893056e52dceebe1c916','{{unknown}}'),
(1714,563,'_oembed_acaf9cf1959eceed2d7f9e67871757a6','{{unknown}}'),
(1716,565,'_wp_old_date','2025-10-15'),
(1718,567,'_wp_old_date','2025-10-15'),
(1721,571,'_wp_old_date','2025-10-15'),
(1723,573,'_wp_old_date','2025-10-15'),
(1727,579,'_wp_old_date','2025-10-15'),
(1728,579,'_oembed_f7ab9faade8e54264d2094380c4b8368','{{unknown}}'),
(1729,579,'_oembed_334a408dd217f6db1a5000a4461cc693','{{unknown}}'),
(1730,579,'_oembed_50a9d10071fbd37a616b57e65971ee2c','{{unknown}}'),
(1732,581,'_oembed_d40dca35f273fd1d95b87326ae7ba7df','{{unknown}}'),
(1733,581,'_oembed_13b7c56e6055fbe3867839071d250358','{{unknown}}'),
(1735,583,'_wp_old_date','2025-10-15'),
(1736,583,'_oembed_591790fca770b8cca537f9b06886bb89','{{unknown}}'),
(1738,585,'_wp_old_date','2025-10-15'),
(1739,585,'_oembed_63c4358fa078b90baf96e15639152cce','{{unknown}}'),
(1740,585,'_oembed_55a4a43d3ca142415c815c42fc1a4869','{{unknown}}'),
(1742,587,'_wp_old_date','2025-10-15'),
(1743,587,'_oembed_ae6f3b59c530c2a0fa9895c43b96f558','{{unknown}}'),
(1744,587,'_oembed_151f8878182586b30c7d8316b949e918','{{unknown}}'),
(1746,589,'_wp_old_date','2025-10-15'),
(1747,589,'_oembed_3a95f05a1d20579063003cc2fdaea090','{{unknown}}'),
(1748,589,'_oembed_393a55fe35f289fd64c138803a28292c','{{unknown}}'),
(1749,589,'_oembed_acf762b8b01dfcd75ecd94515900f539','{{unknown}}'),
(1750,589,'_oembed_5ba9a9bac85ef095b5e4cca3329e4c72','{{unknown}}'),
(1752,591,'_oembed_e2ce45e3c1f424cea8f3e46e65c1d625','{{unknown}}'),
(1753,591,'_oembed_ddf162704d95652996d32d12b3a04b75','{{unknown}}'),
(1755,593,'_wp_old_date','2025-10-15'),
(1756,593,'_oembed_b3bbf23a3f83e7a0043d89b8254b153e','{{unknown}}'),
(1757,593,'_oembed_39764f83bb6bdc168affb52f2730e2c4','{{unknown}}'),
(1758,593,'_oembed_a3526692211c3db94146a0960e9b3c0f','{{unknown}}'),
(1760,595,'_wp_old_date','2025-10-15'),
(1761,595,'_oembed_8ccb74e047b01565eafbc3682dbbfcf3','{{unknown}}'),
(1763,597,'_wp_old_date','2025-10-15'),
(1764,597,'_oembed_9239a414e4a4809b9e2f74c4852e4c8c','{{unknown}}'),
(1765,597,'_oembed_07501286499239c007d95a00613809fe','{{unknown}}'),
(1766,563,'_oembed_28a3e313a7423a8a0353decdc7415bbf','{{unknown}}'),
(1767,563,'_oembed_9ec0d66b98227f6fa1e778cf4d573291','{{unknown}}'),
(1768,563,'_oembed_1e94d8eef7445cfb9ed23c330b69f39d','{{unknown}}'),
(1769,591,'_oembed_9a677d56488e1a6cca796d49f94f6966','{{unknown}}'),
(1770,591,'_oembed_e297436a16fea7afde3b5b927954c097','{{unknown}}'),
(1772,599,'_wp_old_date','2025-10-15'),
(1774,601,'_wp_old_date','2025-10-16'),
(1776,603,'_wp_old_date','2025-10-16'),
(1778,605,'_wp_old_date','2025-10-16'),
(1782,555,'_oembed_e9c6a58af0dcee6d5219fdea16cef91c','{{unknown}}'),
(1783,555,'_oembed_1d178c5824e0e18571a8b72f5d296519','{{unknown}}'),
(1788,619,'_wp_old_date','2025-10-16'),
(1790,621,'_wp_old_date','2025-10-16'),
(1793,625,'_wp_old_date','2025-10-16'),
(1796,629,'_wp_old_date','2025-10-16'),
(1800,635,'_wp_old_date','2025-10-16'),
(1802,639,'_wp_old_date','2025-10-16'),
(1804,641,'_wp_old_date','2025-10-16'),
(1806,643,'_wp_old_date','2025-10-16'),
(1808,645,'_wp_old_date','2025-10-17'),
(1810,647,'_wp_old_date','2025-10-17'),
(1812,649,'_wp_old_date','2025-10-17'),
(1814,653,'_edit_lock','1760680532:1'),
(1815,653,'_edit_last','1'),
(1818,653,'_wp_old_date','2025-10-17'),
(1820,656,'_wp_old_date','2025-10-17'),
(1822,658,'_wp_old_date','2025-10-17'),
(1824,660,'_wp_old_date','2025-10-17'),
(1826,662,'_wp_old_date','2025-10-17'),
(1828,664,'_wp_old_date','2025-10-17'),
(1831,668,'_wp_old_date','2025-10-17'),
(1833,670,'_wp_old_date','2025-10-17'),
(1835,672,'_wp_old_date','2025-10-17'),
(1837,674,'_wp_old_date','2025-10-17'),
(1839,676,'_wp_old_date','2025-10-17'),
(1842,680,'_wp_old_date','2025-10-17'),
(1844,682,'_wp_old_date','2025-10-17'),
(1848,690,'_wp_old_date','2025-10-17'),
(1850,692,'_wp_old_date','2025-10-17'),
(1852,694,'_wp_old_date','2025-10-17'),
(1854,696,'_wp_old_date','2025-10-17'),
(1856,698,'_wp_old_date','2025-10-17'),
(1858,700,'_wp_old_date','2025-10-17'),
(1860,702,'_wp_old_date','2025-10-18'),
(1862,704,'_wp_old_date','2025-10-18'),
(1865,708,'_wp_old_date','2025-10-18'),
(1868,712,'_wp_old_date','2025-10-18'),
(1870,714,'_wp_old_date','2025-10-18'),
(1871,716,'_edit_lock','1760760255:1'),
(1872,716,'_edit_last','1'),
(1875,716,'_wp_old_date','2025-10-18'),
(1877,719,'_wp_old_date','2025-10-18'),
(1878,721,'_edit_lock','1760761533:1'),
(1879,721,'_edit_last','1'),
(1882,721,'_wp_old_date','2025-10-18'),
(1884,724,'_wp_old_date','2025-10-18'),
(1885,726,'_edit_lock','1760762256:1'),
(1886,726,'_edit_last','1'),
(1889,726,'_wp_old_date','2025-10-18'),
(1891,729,'_wp_old_date','2025-10-18'),
(1893,731,'_wp_old_date','2025-10-19'),
(1895,733,'_wp_old_date','2025-10-19'),
(1899,739,'_wp_old_date','2025-10-19'),
(1900,741,'_edit_lock','1760841638:1'),
(1901,741,'_edit_last','1'),
(1904,741,'_wp_old_date','2025-10-19'),
(1906,744,'_wp_old_date','2025-10-19'),
(1908,746,'_wp_old_date','2025-10-19'),
(1911,750,'_wp_old_date','2025-10-19'),
(1913,752,'_wp_old_date','2025-10-19'),
(1916,756,'_wp_old_date','2025-10-19'),
(1918,758,'_wp_old_date','2025-10-19'),
(1920,760,'_wp_old_date','2025-10-20'),
(1924,763,'_wp_old_date','2025-10-20'),
(1926,765,'_wp_old_date','2025-10-20'),
(1928,767,'_wp_old_date','2025-10-20'),
(1930,769,'_wp_old_date','2025-10-20'),
(1935,777,'_wp_old_date','2025-10-20'),
(1940,785,'_wp_old_date','2025-10-20'),
(1942,787,'_wp_old_date','2025-10-20'),
(1946,793,'_wp_old_date','2025-10-20'),
(1948,795,'_wp_old_date','2025-10-20'),
(1950,797,'_wp_old_date','2025-10-20'),
(1956,807,'_wp_old_date','2025-10-20'),
(1959,811,'_wp_old_date','2025-10-20'),
(1962,815,'_wp_old_date','2025-10-20'),
(1965,819,'_wp_old_date','2025-10-20'),
(1967,821,'_wp_old_date','2025-10-20'),
(1971,827,'_wp_old_date','2025-10-20'),
(1973,829,'_wp_old_date','2025-10-20'),
(1975,831,'_wp_old_date','2025-10-20'),
(1978,839,'_wp_old_date','2025-10-20'),
(1980,841,'_wp_old_date','2025-10-20'),
(1982,843,'_wp_old_date','2025-10-20'),
(1986,849,'_wp_old_date','2025-10-20'),
(1988,851,'_wp_old_date','2025-10-20'),
(1990,853,'_wp_old_date','2025-10-20'),
(1994,859,'_wp_old_date','2025-10-21'),
(1997,863,'_wp_old_date','2025-10-21'),
(1999,865,'_wp_old_date','2025-10-21'),
(2001,867,'_wp_old_date','2025-10-21'),
(2003,869,'_wp_old_date','2025-10-21'),
(2005,881,'_wp_old_date','2025-10-21'),
(2007,883,'_wp_old_date','2025-10-21'),
(2011,891,'_wp_attached_file','2025/10/gcblladmnceauhifiwqgnywq.jpg'),
(2012,891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:699;s:4:\"file\";s:36:\"2025/10/gcblladmnceauhifiwqgnywq.jpg\";s:8:\"filesize\";i:92844;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"gcblladmnceauhifiwqgnywq-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"gcblladmnceauhifiwqgnywq-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7017;}}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:{}}}'),
(2014,892,'_wp_old_date','2025-10-21'),
(2015,894,'_wp_attached_file','2025/10/nochnye-babochki-iskusstvo-ustanovlenija-kontakta_1.jpg'),
(2016,894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:466;s:6:\"height\";i:600;s:4:\"file\";s:63:\"2025/10/nochnye-babochki-iskusstvo-ustanovlenija-kontakta_1.jpg\";s:8:\"filesize\";i:54413;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"nochnye-babochki-iskusstvo-ustanovlenija-kontakta_1-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16326;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"nochnye-babochki-iskusstvo-ustanovlenija-kontakta_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6341;}}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:{}}}'),
(2018,895,'_wp_old_date','2025-10-21'),
(2019,897,'_wp_attached_file','2025/10/kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_2.jpg'),
(2020,897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:429;s:6:\"height\";i:600;s:4:\"file\";s:64:\"2025/10/kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_2.jpg\";s:8:\"filesize\";i:52901;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_2-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6920;}}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:{}}}'),
(2021,898,'_wp_attached_file','2025/10/kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_1.jpg'),
(2022,898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:64:\"2025/10/kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_1.jpg\";s:8:\"filesize\";i:55639;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"kurtizanki-simferopolja-iskusstvo-intimnogo-dosuga_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7092;}}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:{}}}'),
(2024,899,'_wp_old_date','2025-10-21'),
(2025,901,'_wp_attached_file','2025/10/mibkqdfonfrblusbipcoaeax.jpg'),
(2026,901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:460;s:6:\"height\";i:301;s:4:\"file\";s:36:\"2025/10/mibkqdfonfrblusbipcoaeax.jpg\";s:8:\"filesize\";i:22492;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"mibkqdfonfrblusbipcoaeax-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"mibkqdfonfrblusbipcoaeax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5186;}}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:{}}}'),
(2028,902,'_wp_old_date','2025-10-21'),
(2034,914,'_wp_old_date','2025-10-21'),
(2036,916,'_wp_old_date','2025-10-21'),
(2039,920,'_wp_old_date','2025-10-21'),
(2041,922,'_wp_old_date','2025-10-21'),
(2044,926,'_wp_old_date','2025-10-21'),
(2046,928,'_wp_old_date','2025-10-21'),
(2048,930,'_wp_old_date','2025-10-21'),
(2051,934,'_wp_old_date','2025-10-21'),
(2053,936,'_wp_old_date','2025-10-21'),
(2055,938,'_wp_old_date','2025-10-21'),
(2057,940,'_wp_old_date','2025-10-21'),
(2059,942,'_wp_old_date','2025-10-21'),
(2061,944,'_wp_old_date','2025-10-21'),
(2063,946,'_wp_old_date','2025-10-21'),
(2065,948,'_wp_old_date','2025-10-21'),
(2067,950,'_wp_old_date','2025-10-21'),
(2070,954,'_wp_old_date','2025-10-21'),
(2072,956,'_wp_old_date','2025-10-21'),
(2075,960,'_wp_old_date','2025-10-21'),
(2077,962,'_wp_old_date','2025-10-22'),
(2079,964,'_wp_old_date','2025-10-22'),
(2081,966,'_wp_old_date','2025-10-22'),
(2083,968,'_wp_old_date','2025-10-22'),
(2085,970,'_wp_old_date','2025-10-22'),
(2087,972,'_wp_old_date','2025-10-22'),
(2089,974,'_wp_old_date','2025-10-22'),
(2091,976,'_wp_old_date','2025-10-22'),
(2093,978,'_wp_old_date','2025-10-22'),
(2095,980,'_wp_old_date','2025-10-22'),
(2097,982,'_wp_old_date','2025-10-22'),
(2099,984,'_wp_old_date','2025-10-22'),
(2101,986,'_wp_old_date','2025-10-22'),
(2104,990,'_wp_old_date','2025-10-22'),
(2106,992,'_wp_old_date','2025-10-22'),
(2108,994,'_wp_old_date','2025-10-22'),
(2110,996,'_wp_old_date','2025-10-22'),
(2112,998,'_wp_old_date','2025-10-22'),
(2114,1000,'_wp_old_date','2025-10-22'),
(2116,1002,'_wp_old_date','2025-10-22'),
(2118,1004,'_wp_old_date','2025-10-22'),
(2120,1006,'_wp_old_date','2025-10-22'),
(2123,1010,'_wp_old_date','2025-10-22'),
(2125,1012,'_wp_old_date','2025-10-22'),
(2127,1014,'_wp_old_date','2025-10-22'),
(2130,1018,'_wp_old_date','2025-10-22'),
(2132,1020,'_wp_old_date','2025-10-22'),
(2135,1024,'_wp_old_date','2025-10-22'),
(2137,1026,'_wp_old_date','2025-10-22'),
(2139,1028,'_wp_old_date','2025-10-22'),
(2141,1030,'_wp_old_date','2025-10-22'),
(2143,1032,'_wp_old_date','2025-10-22'),
(2146,1036,'_wp_old_date','2025-10-22'),
(2148,1038,'_wp_old_date','2025-10-22'),
(2150,1040,'_wp_old_date','2025-10-22'),
(2153,1044,'_wp_old_date','2025-10-22'),
(2155,1046,'_wp_old_date','2025-10-22'),
(2158,1050,'_wp_old_date','2025-10-22'),
(2160,1052,'_wp_old_date','2025-10-22'),
(2163,1056,'_wp_old_date','2025-10-22'),
(2165,1058,'_wp_old_date','2025-10-22'),
(2167,1060,'_wp_old_date','2025-10-22'),
(2169,1062,'_wp_old_date','2025-10-22'),
(2172,1066,'_wp_old_date','2025-10-22'),
(2174,1068,'_wp_old_date','2025-10-22'),
(2176,1070,'_wp_old_date','2025-10-22'),
(2178,1072,'_wp_old_date','2025-10-22'),
(2180,1074,'_wp_old_date','2025-10-22'),
(2182,1076,'_wp_old_date','2025-10-22'),
(2184,1078,'_wp_old_date','2025-10-22'),
(2186,1080,'_wp_old_date','2025-10-22'),
(2190,1086,'_wp_old_date','2025-10-22'),
(2192,1088,'_wp_old_date','2025-10-22'),
(2196,1094,'_wp_old_date','2025-10-22'),
(2198,1096,'_wp_old_date','2025-10-22'),
(2200,1098,'_wp_old_date','2025-10-22'),
(2202,1100,'_wp_old_date','2025-10-22'),
(2204,1102,'_wp_old_date','2025-10-22'),
(2206,1104,'_wp_old_date','2025-10-22'),
(2208,1106,'_wp_old_date','2025-10-22'),
(2210,1108,'_wp_old_date','2025-10-22'),
(2213,1112,'_wp_old_date','2025-10-22'),
(2215,1114,'_wp_old_date','2025-10-22'),
(2217,1116,'_wp_old_date','2025-10-22'),
(2219,1118,'_wp_old_date','2025-10-22'),
(2222,1122,'_wp_old_date','2025-10-22'),
(2224,1124,'_wp_old_date','2025-10-22'),
(2226,1126,'_wp_old_date','2025-10-22'),
(2228,1128,'_wp_old_date','2025-10-22'),
(2230,1130,'_wp_old_date','2025-10-22'),
(2232,1132,'_wp_old_date','2025-10-22'),
(2234,1134,'_wp_old_date','2025-10-22'),
(2237,1138,'_wp_old_date','2025-10-22'),
(2240,1142,'_wp_old_date','2025-10-22'),
(2243,1146,'_wp_old_date','2025-10-22'),
(2245,1148,'_wp_old_date','2025-10-22'),
(2256,1168,'_wp_old_date','2025-10-22'),
(2258,1170,'_wp_old_date','2025-10-22'),
(2260,1172,'_wp_old_date','2025-10-22'),
(2262,1174,'_wp_old_date','2025-10-22'),
(2265,1178,'_wp_old_date','2025-10-22'),
(2268,1182,'_wp_old_date','2025-10-22'),
(2270,1184,'_wp_old_date','2025-10-22'),
(2277,1196,'_wp_old_date','2025-10-22'),
(2279,1198,'_wp_old_date','2025-10-22'),
(2285,1208,'_wp_old_date','2025-10-22'),
(2287,1210,'_wp_old_date','2025-10-22'),
(2289,1212,'_wp_old_date','2025-10-22'),
(2292,1218,'_wp_old_date','2025-10-22'),
(2294,1220,'_wp_old_date','2025-10-22'),
(2296,1222,'_wp_old_date','2025-10-22'),
(2298,1224,'_wp_old_date','2025-10-22'),
(2300,1226,'_wp_old_date','2025-10-22'),
(2302,1228,'_wp_old_date','2025-10-22'),
(2305,1232,'_wp_old_date','2025-10-22'),
(2307,1234,'_wp_old_date','2025-10-22'),
(2309,1236,'_wp_old_date','2025-10-22'),
(2311,1238,'_wp_old_date','2025-10-22'),
(2313,1240,'_wp_old_date','2025-10-22'),
(2315,1242,'_wp_old_date','2025-10-22'),
(2318,1246,'_wp_old_date','2025-10-22'),
(2320,1248,'_wp_old_date','2025-10-22'),
(2322,1250,'_wp_old_date','2025-10-22'),
(2324,1252,'_wp_old_date','2025-10-22'),
(2326,1254,'_wp_old_date','2025-10-22'),
(2328,1256,'_wp_old_date','2025-10-22'),
(2330,1258,'_wp_old_date','2025-10-22'),
(2332,1260,'_wp_old_date','2025-10-22'),
(2334,1262,'_wp_old_date','2025-10-22'),
(2336,1264,'_wp_old_date','2025-10-22'),
(2338,1266,'_wp_old_date','2025-10-22'),
(2341,1270,'_wp_old_date','2025-10-22'),
(2344,1274,'_wp_old_date','2025-10-22'),
(2347,1278,'_wp_old_date','2025-10-22'),
(2349,1280,'_wp_old_date','2025-10-22'),
(2351,1282,'_wp_old_date','2025-10-22'),
(2353,1284,'_wp_old_date','2025-10-22'),
(2356,1288,'_wp_old_date','2025-10-22'),
(2358,1290,'_wp_old_date','2025-10-22'),
(2360,1292,'_wp_old_date','2025-10-22'),
(2362,1294,'_wp_old_date','2025-10-22'),
(2364,1296,'_wp_old_date','2025-10-22'),
(2366,1298,'_wp_old_date','2025-10-22'),
(2368,1300,'_wp_old_date','2025-10-22'),
(2371,1304,'_wp_old_date','2025-10-22'),
(2373,1306,'_wp_old_date','2025-10-22'),
(2375,1308,'_wp_old_date','2025-10-22'),
(2377,1310,'_wp_old_date','2025-10-22'),
(2380,1314,'_wp_old_date','2025-10-22'),
(2382,1316,'_wp_old_date','2025-10-23'),
(2384,1318,'_wp_old_date','2025-10-23'),
(2386,1320,'_wp_old_date','2025-10-23'),
(2388,1322,'_wp_old_date','2025-10-23'),
(2390,1324,'_wp_old_date','2025-10-23'),
(2392,1326,'_wp_old_date','2025-10-23'),
(2394,1328,'_wp_old_date','2025-10-23'),
(2396,1330,'_wp_old_date','2025-10-23'),
(2398,1332,'_wp_old_date','2025-10-23'),
(2400,1334,'_wp_old_date','2025-10-23'),
(2402,1336,'_wp_old_date','2025-10-23'),
(2404,1338,'_wp_old_date','2025-10-23'),
(2406,1340,'_wp_old_date','2025-10-23'),
(2408,1342,'_wp_old_date','2025-10-23'),
(2416,1361,'_wp_old_date','2025-10-23'),
(2419,1365,'_wp_old_date','2025-10-23'),
(2422,1369,'_wp_old_date','2025-10-23'),
(2424,1371,'_wp_old_date','2025-10-23'),
(2426,1373,'_wp_old_date','2025-10-23'),
(2428,1375,'_wp_old_date','2025-10-23'),
(2430,1377,'_wp_old_date','2025-10-23'),
(2433,1381,'_wp_old_date','2025-10-23'),
(2436,1385,'_wp_old_date','2025-10-23'),
(2438,1387,'_wp_old_date','2025-10-23'),
(2442,1395,'_wp_old_date','2025-10-23'),
(2444,1399,'_wp_old_date','2025-10-23'),
(2448,1405,'_wp_old_date','2025-10-23'),
(2450,1407,'_wp_old_date','2025-10-23'),
(2453,1413,'_wp_old_date','2025-10-23'),
(2457,1419,'_wp_old_date','2025-10-23'),
(2463,1429,'_wp_old_date','2025-10-23'),
(2466,1433,'_wp_old_date','2025-10-23'),
(2467,1433,'_wp_trash_meta_status','publish'),
(2468,1433,'_wp_trash_meta_time','1761225307'),
(2469,1433,'_wp_desired_post_slug','tx-escorts-tryst-connect-come-across-independent-escorts'),
(2473,1441,'_wp_old_date','2025-10-23'),
(2475,1443,'_wp_old_date','2025-10-23'),
(2477,1445,'_wp_old_date','2025-10-23'),
(2479,1447,'_wp_old_date','2025-10-23'),
(2481,1449,'_wp_old_date','2025-10-23'),
(2482,1451,'_edit_lock','1761227767:1'),
(2483,1451,'_edit_last','1'),
(2486,1451,'_wp_old_date','2025-10-23'),
(2488,1454,'_wp_old_date','2025-10-23'),
(2489,1456,'_edit_lock','1761227954:1'),
(2490,1456,'_edit_last','1'),
(2493,1456,'_wp_old_date','2025-10-23'),
(2495,1459,'_wp_old_date','2025-10-23'),
(2496,1461,'_edit_lock','1761228122:1'),
(2497,1461,'_edit_last','1'),
(2500,1461,'_wp_old_date','2025-10-23'),
(2502,1464,'_wp_old_date','2025-10-23'),
(2504,1466,'_wp_old_date','2025-10-23'),
(2506,1468,'_wp_old_date','2025-10-23'),
(2508,1470,'_wp_old_date','2025-10-23'),
(2509,1470,'_wp_trash_meta_status','publish'),
(2510,1470,'_wp_trash_meta_time','1761229430'),
(2511,1470,'_wp_desired_post_slug','amour-tropez-cours-resultat-descorte-feminine-vip-cavalcades-de-qualite'),
(2515,1476,'_wp_old_date','2025-10-23'),
(2520,1484,'_wp_old_date','2025-10-24'),
(2524,1489,'_wp_old_date','2025-10-24'),
(2527,1493,'_wp_old_date','2025-10-24'),
(2529,1495,'_wp_old_date','2025-10-24'),
(2533,1501,'_wp_old_date','2025-10-24'),
(2535,1503,'_wp_old_date','2025-10-24'),
(2537,1505,'_wp_old_date','2025-10-24'),
(2539,1507,'_wp_old_date','2025-10-24'),
(2541,1509,'_wp_old_date','2025-10-24'),
(2544,1513,'_wp_old_date','2025-10-24'),
(2546,1515,'_wp_old_date','2025-10-24'),
(2548,1519,'_wp_attached_file','2025/10/nochnaja-babochka-na-1-chas-intimnyj-dosug-v_1.jpg'),
(2549,1519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2025/10/nochnaja-babochka-na-1-chas-intimnyj-dosug-v_1.jpg\";s:8:\"filesize\";i:61017;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"nochnaja-babochka-na-1-chas-intimnyj-dosug-v_1-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"nochnaja-babochka-na-1-chas-intimnyj-dosug-v_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6476;}}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:{}}}'),
(2551,1520,'_wp_old_date','2025-10-24'),
(2552,1522,'_wp_attached_file','2025/10/wfdykxgsfheudunisclvylad.jpg'),
(2553,1522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2025/10/wfdykxgsfheudunisclvylad.jpg\";s:8:\"filesize\";i:39973;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"wfdykxgsfheudunisclvylad-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"wfdykxgsfheudunisclvylad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5571;}}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:{}}}'),
(2554,1523,'_wp_attached_file','2025/10/xjfublgexufmhogvquvqivmn.jpg'),
(2555,1523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:362;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2025/10/xjfublgexufmhogvquvqivmn.jpg\";s:8:\"filesize\";i:19439;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"xjfublgexufmhogvquvqivmn-181x300.jpg\";s:5:\"width\";i:181;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"xjfublgexufmhogvquvqivmn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3653;}}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:{}}}'),
(2557,1524,'_wp_old_date','2025-10-24'),
(2558,1526,'_wp_attached_file','2025/10/tqlsqsoknlkuiporxxdlwtco.jpg'),
(2559,1526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:542;s:6:\"height\";i:700;s:4:\"file\";s:36:\"2025/10/tqlsqsoknlkuiporxxdlwtco.jpg\";s:8:\"filesize\";i:48912;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"tqlsqsoknlkuiporxxdlwtco-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"tqlsqsoknlkuiporxxdlwtco-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6073;}}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:{}}}'),
(2561,1527,'_wp_old_date','2025-10-24'),
(2562,1529,'_wp_attached_file','2025/10/sycpsgtmghbbblwjoattcvpl.jpg'),
(2563,1529,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:488;s:6:\"height\";i:700;s:4:\"file\";s:36:\"2025/10/sycpsgtmghbbblwjoattcvpl.jpg\";s:8:\"filesize\";i:39731;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"sycpsgtmghbbblwjoattcvpl-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"sycpsgtmghbbblwjoattcvpl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4935;}}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:{}}}'),
(2565,1530,'_wp_old_date','2025-10-24'),
(2581,1562,'_wp_attached_file','2025/10/eieogwvrxlanafphxxehdwjk.jpg'),
(2582,1562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:408;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2025/10/eieogwvrxlanafphxxehdwjk.jpg\";s:8:\"filesize\";i:35108;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"eieogwvrxlanafphxxehdwjk-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"eieogwvrxlanafphxxehdwjk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5115;}}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:{}}}'),
(2583,1563,'_wp_attached_file','2025/10/nochnye-babochki-v-krasnodare-iskusstvo-intimnyh_1.jpg'),
(2584,1563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:344;s:4:\"file\";s:62:\"2025/10/nochnye-babochki-v-krasnodare-iskusstvo-intimnyh_1.jpg\";s:8:\"filesize\";i:29358;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"nochnye-babochki-v-krasnodare-iskusstvo-intimnyh_1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"nochnye-babochki-v-krasnodare-iskusstvo-intimnyh_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;}}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:{}}}'),
(2586,1564,'_wp_old_date','2025-10-24'),
(2590,1572,'_wp_old_date','2025-10-24'),
(2592,1574,'_wp_old_date','2025-10-24'),
(2596,1580,'_wp_old_date','2025-10-24'),
(2598,1582,'_wp_old_date','2025-10-24'),
(2602,1588,'_wp_old_date','2025-10-24'),
(2604,1590,'_wp_old_date','2025-10-24'),
(2607,1594,'_wp_old_date','2025-10-24'),
(2610,1598,'_wp_old_date','2025-10-24'),
(2612,1600,'_wp_old_date','2025-10-24'),
(2614,1602,'_wp_old_date','2025-10-24'),
(2618,1608,'_wp_old_date','2025-10-24'),
(2620,1610,'_wp_old_date','2025-10-24'),
(2622,1612,'_wp_old_date','2025-10-24'),
(2624,1614,'_wp_old_date','2025-10-25'),
(2626,1616,'_wp_old_date','2025-10-25'),
(2628,1618,'_wp_old_date','2025-10-25'),
(2630,1620,'_wp_old_date','2025-10-25'),
(2632,1622,'_wp_old_date','2025-10-25'),
(2634,1624,'_wp_old_date','2025-10-25'),
(2636,1626,'_wp_old_date','2025-10-25'),
(2638,1628,'_wp_old_date','2025-10-25'),
(2640,1630,'_wp_old_date','2025-10-25'),
(2643,1634,'_wp_old_date','2025-10-25'),
(2645,1636,'_wp_old_date','2025-10-25'),
(2647,1638,'_wp_old_date','2025-10-25'),
(2649,1640,'_wp_old_date','2025-10-25'),
(2651,1642,'_wp_old_date','2025-10-25'),
(2654,1646,'_wp_old_date','2025-10-25'),
(2656,1648,'_wp_old_date','2025-10-25'),
(2658,1650,'_wp_old_date','2025-10-25'),
(2661,1654,'_wp_old_date','2025-10-25'),
(2663,1656,'_wp_old_date','2025-10-25'),
(2666,1662,'_edit_lock','1761364142:1'),
(2667,1662,'_edit_last','1'),
(2670,1662,'_wp_old_date','2025-10-25'),
(2673,1667,'_wp_old_date','2025-10-25'),
(2674,1669,'_edit_lock','1761364234:1'),
(2675,1669,'_edit_last','1'),
(2678,1669,'_wp_old_date','2025-10-25'),
(2679,1672,'_edit_lock','1761364246:1'),
(2680,1672,'_edit_last','1'),
(2683,1672,'_wp_old_date','2025-10-25'),
(2685,1675,'_wp_old_date','2025-10-25'),
(2686,1677,'_edit_lock','1761364314:1'),
(2687,1677,'_edit_last','1'),
(2690,1677,'_wp_old_date','2025-10-25'),
(2692,1680,'_wp_old_date','2025-10-25'),
(2696,1686,'_wp_old_date','2025-10-25'),
(2698,1688,'_wp_old_date','2025-10-25'),
(2700,1690,'_wp_old_date','2025-10-25'),
(2702,1692,'_wp_old_date','2025-10-25'),
(2704,1694,'_wp_old_date','2025-10-25'),
(2706,1696,'_wp_old_date','2025-10-25'),
(2708,1698,'_wp_old_date','2025-10-25'),
(2710,1700,'_wp_old_date','2025-10-26'),
(2712,1702,'_wp_old_date','2025-10-26'),
(2714,1704,'_wp_old_date','2025-10-26'),
(2716,1706,'_wp_old_date','2025-10-26'),
(2718,1708,'_wp_old_date','2025-10-26'),
(2720,1710,'_wp_old_date','2025-10-26'),
(2722,1712,'_wp_old_date','2025-10-26'),
(2724,1714,'_wp_old_date','2025-10-26'),
(2726,1716,'_wp_old_date','2025-10-26'),
(2729,1721,'_wp_old_date','2025-10-26'),
(2733,1724,'_wp_old_date','2025-10-26'),
(2735,1726,'_wp_old_date','2025-10-26'),
(2736,1728,'_edit_lock','1761451306:1'),
(2737,1728,'_edit_last','1'),
(2740,1728,'_wp_old_date','2025-10-26'),
(2742,1731,'_wp_old_date','2025-10-26'),
(2743,1733,'_edit_lock','1761451408:1'),
(2744,1733,'_edit_last','1'),
(2747,1733,'_wp_old_date','2025-10-26'),
(2749,1736,'_wp_old_date','2025-10-26'),
(2750,1738,'_edit_lock','1761451477:1'),
(2751,1738,'_edit_last','1'),
(2754,1738,'_wp_old_date','2025-10-26'),
(2756,1742,'_wp_old_date','2025-10-27'),
(2760,1748,'_wp_old_date','2025-10-27'),
(2763,1752,'_wp_old_date','2025-10-27'),
(2766,1756,'_wp_old_date','2025-10-27'),
(2769,1760,'_wp_old_date','2025-10-27'),
(2771,1762,'_wp_old_date','2025-10-27'),
(2773,1766,'_edit_lock','1761536611:1'),
(2774,1766,'_edit_last','1'),
(2777,1766,'_wp_old_date','2025-10-27'),
(2779,1771,'_edit_lock','1761536714:1'),
(2780,1771,'_edit_last','1'),
(2783,1771,'_wp_old_date','2025-10-27'),
(2785,1776,'_edit_lock','1761536800:1'),
(2786,1776,'_edit_last','1'),
(2789,1776,'_wp_old_date','2025-10-27'),
(2791,1779,'_wp_old_date','2025-10-27'),
(2794,1783,'_wp_old_date','2025-10-27'),
(2808,1809,'_wp_old_date','2025-10-27'),
(2812,1815,'_wp_old_date','2025-10-27'),
(2815,1819,'_wp_old_date','2025-10-27'),
(2819,1825,'_wp_old_date','2025-10-27'),
(2821,1827,'_wp_old_date','2025-10-27'),
(2826,1835,'_wp_old_date','2025-10-27'),
(2828,1837,'_wp_old_date','2025-10-27'),
(2833,1845,'_wp_old_date','2025-10-27'),
(2836,1849,'_wp_old_date','2025-10-27'),
(2838,1851,'_wp_old_date','2025-10-27'),
(2839,1851,'_wp_trash_meta_status','publish'),
(2840,1851,'_wp_trash_meta_time','1761572956'),
(2841,1851,'_wp_desired_post_slug','1win-promosyon-kodu-2025-dos800-tesvik-%30-nakit-geri-odeme'),
(2843,1853,'_wp_old_date','2025-10-27'),
(2845,1855,'_wp_old_date','2025-10-27'),
(2847,1857,'_wp_old_date','2025-10-27'),
(2849,1859,'_wp_old_date','2025-10-27'),
(2851,1861,'_wp_old_date','2025-10-27'),
(2858,1876,'_edit_lock','1761615270:1'),
(2859,1876,'_edit_last','1'),
(2862,1878,'_wp_old_date','2025-10-28'),
(2864,1880,'_wp_old_date','2025-10-28'),
(2866,1882,'_wp_old_date','2025-10-28'),
(2867,1884,'_edit_lock','1761622259:1'),
(2868,1884,'_edit_last','1'),
(2871,1884,'_wp_old_date','2025-10-28'),
(2873,1889,'_edit_lock','1761622416:1'),
(2874,1889,'_edit_last','1'),
(2877,1889,'_wp_old_date','2025-10-28'),
(2879,1892,'_wp_old_date','2025-10-28'),
(2880,1894,'_edit_lock','1761622582:1'),
(2881,1894,'_edit_last','1'),
(2884,1894,'_wp_old_date','2025-10-28'),
(2908,1943,'_wp_old_date','2025-10-29'),
(2910,1945,'_wp_old_date','2025-10-29'),
(2911,1945,'_wp_trash_meta_status','publish'),
(2912,1945,'_wp_trash_meta_time','1761673541'),
(2913,1945,'_wp_desired_post_slug','1win-jetx-nigeria-%500-bonusla-kaydolun-ve-jackpotu-kazanin'),
(2918,1953,'_wp_old_date','2025-10-29'),
(2921,1957,'_wp_old_date','2025-10-29'),
(2923,1959,'_wp_old_date','2025-10-29'),
(2925,1961,'_wp_old_date','2025-10-29'),
(2927,1963,'_wp_old_date','2025-10-29'),
(2929,1965,'_wp_old_date','2025-10-29'),
(2931,1967,'_wp_old_date','2025-10-29'),
(2933,1969,'_wp_old_date','2025-10-29'),
(2936,1973,'_wp_old_date','2025-10-29'),
(2938,1975,'_wp_old_date','2025-10-29'),
(2940,1977,'_wp_old_date','2025-10-29'),
(2943,1981,'_wp_old_date','2025-10-29'),
(2945,1983,'_wp_old_date','2025-10-29'),
(2947,1985,'_wp_old_date','2025-10-29'),
(2949,1987,'_wp_old_date','2025-10-29'),
(2952,1991,'_wp_old_date','2025-10-29'),
(2955,1995,'_wp_old_date','2025-10-29'),
(2957,1997,'_wp_old_date','2025-10-29'),
(2959,1999,'_wp_old_date','2025-10-29'),
(2961,2001,'_wp_old_date','2025-10-29'),
(2963,2003,'_wp_old_date','2025-10-29'),
(2966,2007,'_wp_old_date','2025-10-29'),
(2969,2011,'_wp_old_date','2025-10-29'),
(2971,2015,'_edit_lock','1761708880:1'),
(2972,2015,'_edit_last','1'),
(2974,2017,'_edit_lock','1761708919:1'),
(2975,2017,'_edit_last','1'),
(2978,2017,'_wp_old_date','2025-10-29'),
(2980,2020,'_wp_old_date','2025-10-29'),
(2982,2024,'_edit_lock','1761709215:1'),
(2983,2024,'_edit_last','1'),
(2986,2024,'_wp_old_date','2025-10-29'),
(2997,2045,'_wp_old_date','2025-10-29'),
(3008,2065,'_wp_old_date','2025-10-29'),
(3010,2067,'_wp_old_date','2025-10-29'),
(3013,2071,'_wp_old_date','2025-10-29'),
(3015,2073,'_wp_old_date','2025-10-29'),
(3017,2075,'_wp_old_date','2025-10-29'),
(3019,2077,'_wp_old_date','2025-10-29'),
(3021,2079,'_wp_old_date','2025-10-29'),
(3024,2083,'_wp_old_date','2025-10-29'),
(3026,2085,'_wp_old_date','2025-10-29'),
(3028,2087,'_wp_old_date','2025-10-29'),
(3030,2089,'_wp_old_date','2025-10-29'),
(3032,2091,'_wp_old_date','2025-10-29'),
(3034,2093,'_wp_old_date','2025-10-29'),
(3037,2097,'_wp_old_date','2025-10-29'),
(3039,2099,'_wp_old_date','2025-10-29'),
(3041,2101,'_wp_old_date','2025-10-29'),
(3043,2103,'_wp_old_date','2025-10-29'),
(3045,2105,'_wp_old_date','2025-10-29'),
(3047,2107,'_wp_old_date','2025-10-29'),
(3050,2111,'_wp_old_date','2025-10-29'),
(3052,2113,'_wp_old_date','2025-10-29'),
(3054,2115,'_wp_old_date','2025-10-29'),
(3060,2125,'_wp_old_date','2025-10-30'),
(3061,2127,'_edit_lock','1761787421:1'),
(3062,2127,'_edit_last','1'),
(3066,2131,'_wp_old_date','2025-10-30'),
(3069,2135,'_wp_old_date','2025-10-30'),
(3070,2137,'_edit_lock','1761795012:1'),
(3071,2137,'_edit_last','1'),
(3074,2137,'_wp_old_date','2025-10-30'),
(3076,2140,'_wp_old_date','2025-10-30'),
(3077,2142,'_edit_lock','1761795104:1'),
(3078,2142,'_edit_last','1'),
(3081,2142,'_wp_old_date','2025-10-30'),
(3082,561,'_oembed_7f01c36dec6ca740a1fd7ef5e84ef9ac','{{unknown}}'),
(3083,561,'_oembed_8a941f2bbf780318266653b6071fddcb','{{unknown}}'),
(3084,561,'_oembed_49ac5c0daa72203b9e104014c037753c','{{unknown}}'),
(3097,2168,'_wp_old_date','2025-10-30'),
(3104,581,'_oembed_f3206cd0f670f247bfda956fd780332b','{{unknown}}'),
(3105,581,'_oembed_7e790e2522114411ab32432299352bcd','{{unknown}}'),
(3106,593,'_oembed_99cebdce1e155cc062108765aa434d7e','{{unknown}}'),
(3107,593,'_oembed_6f0c8cb4bd7e1c897af15c21f04501ca','{{unknown}}'),
(3108,593,'_oembed_429535724d54f75e3156f8ec6967127c','{{unknown}}'),
(3109,595,'_oembed_d204abb8b0910291bd565c37e16d0243','{{unknown}}'),
(3110,585,'_oembed_e92e1dd1b41274134f1bf6a155dc2922','{{unknown}}'),
(3111,585,'_oembed_f220722f0fde0c3f9f0fe73e98c60399','{{unknown}}'),
(3116,2189,'_wp_old_date','2025-10-31'),
(3118,2191,'_wp_old_date','2025-10-31'),
(3120,2193,'_wp_old_date','2025-10-31'),
(3122,2195,'_wp_old_date','2025-10-31'),
(3124,2197,'_wp_old_date','2025-10-31'),
(3126,2201,'_edit_lock','1761882187:1'),
(3127,2201,'_edit_last','1'),
(3130,2201,'_wp_old_date','2025-10-31'),
(3132,2204,'_wp_old_date','2025-10-31'),
(3133,2206,'_edit_lock','1761882522:1'),
(3134,2206,'_edit_last','1'),
(3137,2206,'_wp_old_date','2025-10-31'),
(3141,2215,'_wp_old_date','2025-10-31'),
(3143,2217,'_wp_old_date','2025-10-31'),
(3145,2219,'_wp_old_date','2025-10-31'),
(3147,2221,'_wp_old_date','2025-10-31'),
(3151,2227,'_wp_old_date','2025-10-31'),
(3156,2235,'_wp_old_date','2025-10-31'),
(3159,2239,'_wp_old_date','2025-10-31'),
(3162,2243,'_wp_old_date','2025-10-31'),
(3165,2247,'_wp_old_date','2025-10-31'),
(3168,2251,'_wp_old_date','2025-10-31'),
(3170,2253,'_wp_old_date','2025-10-31'),
(3173,2257,'_wp_old_date','2025-10-31'),
(3176,2261,'_wp_old_date','2025-10-31'),
(3181,2269,'_wp_old_date','2025-10-31'),
(3183,2271,'_wp_old_date','2025-10-31'),
(3188,2279,'_wp_old_date','2025-11-01'),
(3190,2281,'_wp_old_date','2025-11-01'),
(3192,2283,'_wp_old_date','2025-11-01'),
(3194,2285,'_wp_old_date','2025-11-01'),
(3199,2293,'_wp_old_date','2025-11-01'),
(3201,2295,'_wp_old_date','2025-11-01'),
(3203,2297,'_wp_old_date','2025-11-01'),
(3205,2299,'_wp_old_date','2025-11-01'),
(3207,2301,'_wp_old_date','2025-11-01'),
(3209,2303,'_wp_old_date','2025-11-01'),
(3211,2305,'_wp_old_date','2025-11-01'),
(3213,2307,'_wp_old_date','2025-11-01'),
(3216,2311,'_wp_old_date','2025-11-01'),
(3218,2313,'_wp_old_date','2025-11-01'),
(3220,2315,'_wp_old_date','2025-11-01'),
(3222,2317,'_wp_old_date','2025-11-01'),
(3225,2322,'_wp_old_date','2025-11-01'),
(3227,2324,'_wp_old_date','2025-11-01'),
(3229,2326,'_wp_old_date','2025-11-01'),
(3231,2328,'_wp_old_date','2025-11-01'),
(3233,2332,'_edit_lock','1761968351:1'),
(3234,2332,'_edit_last','1'),
(3237,2332,'_wp_old_date','2025-11-01'),
(3239,2337,'_edit_lock','1761968766:1'),
(3240,2337,'_edit_last','1'),
(3243,2337,'_wp_old_date','2025-11-01'),
(3245,2340,'_wp_old_date','2025-11-02');
/*!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 = utf8mb4 */;
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 NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) 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=2344 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
(4,0,'2024-08-22 06:05:19','2024-08-22 06:05:19','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-08-22 06:05:19','2024-08-22 06:05:19','',0,'https://lion288slot.com/index.php/2024/08/22/navigation/',0,'wp_navigation','',0);
INSERT INTO `wp_posts` VALUES
(6,1,'2024-08-22 23:08:19','2024-08-22 16:08:19','[{\"term_slug\":\"6e926e99c95cf363c495975d2995f84f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"78dd4d7bebdba8caab9e2ff853b2e7f3\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc.i-amphtml-embedded\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bc368a0d8e4c8dc126d5f2d9d376b2d4\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"32cbcdc5dfac231079dd911df24735d3\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"796859c545b2b8bbc78aaf45428a856a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie:not(.i-amphtml-inabox)>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6c341bfced358c62f6d0507cb02c595c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f74dd261c0bbb601c9c2bebac91866cc\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed-legacy>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1103860b579a837033c4baa2578d2cde\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"05632efcdb03f348543a908bd58b5208\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d966a13a6b153c2af02d7685435e2191\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7c10c9a7a5da21835a8316b5d7e21491\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9b6bd38549de6e60687ba6ef004148ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f49c84f57dc012e17cba9a783b3230c9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1b569efb19a9b26f5c0b63aa5ccb6f98\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body .i-amphtml-lightbox-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"98f7f952cdf89436d1fe8bfef9cd1dff\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body[i-amphtml-lightbox]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5ef16232cb7c2b455dd95878bfef36ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"967f2883d59e1961f74302d034e20363\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper.i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"74cfdfb0b90c5a30a15f515ec5793db1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a15e44da56c1bf79870abe5023b84a95\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-action]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d16f8f1a8797a2fe257afdf7e0770c55\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-section]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e304f4ec3f6df028a03c5a319927aec1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-story .i-amphtml-loader-background\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"90d71052e4e57147bf5c7b77a4474890\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-autocomplete-results\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"4968113fe0bf02feb08d10681aacb08a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ab11958d7828e129dfcc6dacfa6538f6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=nodisplay]:not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7a56a2da869de0147a3128ae03b6a7ce\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"06e2f1baa02202f8b6e64ae762b52e31\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fixed][width][height]:not(.i-amphtml-layout-fixed)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"abb7edd7244e18c2bcf1206bc5c2f63b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-responsive\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cbb02f9cbe1032d8273f84e1763271ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=responsive][width][height]:not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"02be1b3c96a02bb5618ee00f49035114\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1c24de44529a455723b7f5ecfb325e0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"424e38f6208529dda0deca9b5761551b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cf235538b0e34806687ec3e05217f3d7\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c994637899b3260f3b08af60acd30b7e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic .i-amphtml-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"62bbfff47a671421852c730e6e75c52c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-intrinsic-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7956acf2a344f92b5c1d642d96009eba\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"85f1a444eefbab93f26482896ef0517d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed-height\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3763c1d45150b1bb670dcf26f6970f95\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"369be1b254f130414b0198b186e5c8e9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fill\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"597c7a1cda0081db7abf51f1fff65200\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fill.i-amphtml-notbuilt\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b7eced3df1f3c799a47532b24d3ae213\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fill]:not(.i-amphtml-layout-fill)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0ebb421eab88295615fc41dedf317e93\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-flex-item\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ac7607581d0bf919bad773c14c4e7f71\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=flex-item]:not(.i-amphtml-layout-flex-item)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cc6617893416bac6381cfe9f2610fa8d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fluid\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"05b03d0f41d6c796546f040d56472ad2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"211f493cfc36aa016bbd1cabeedc95b5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-awaiting-size\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"163cff4c70bc46f71881b3e7e66d46a6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1c1a75a4d87a6e5a4195d81919e7df57\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-sizer.i-amphtml-disable-ar\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1bf411fe0f9d7bcf0de1ee9a82af86f8\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"704c2c3a7fab806172501bb0c68b6521\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined .i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ed3a6dc59f746d84ee645c7d70433516\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-replaced-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"851e321f225a5e780c69c1093c4fa080\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3b05a628fc5434156f1011e17f61cfc0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0810e2f827a96c5d28f4a097adf7c065\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"877f1688632ddcb840fcc05b782bfef5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67ad44335dfff37be43caf4b3ea9055e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-unresolved\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"458cc5f045ce35dfc6b0299062b0487c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-select-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8b1461c0ec91cc0e50413fcc3df42893\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a79d184c4bf2c1ac6bdb8b0e03fcbed5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0a26ecf71f42183d674b37f23a3b5f76\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0991ec0e12d22ff55065ce8e97602a6c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1a21b76af7f00d9e2a1d87ea823fc85c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"963b1d5a1619a8e07bd1801383df5fa0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not([layout=container]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e3127efb582e232b19e444f59b9e3d0b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8c5c0526583da8fd3120c40c995b5f65\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not([layout]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"249e96497ba86b7690a59ac6fce8eb65\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8eeb3fbf4ea07ba9ef69ad542775dfe1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt:not(.i-amphtml-layout-container)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ffba64de2949b671984b2dc743d51a96\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not([layout=container]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c582270ca7786dd0383fd758b94745cb\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"459a208a950bd2aa1532a3740d8fb094\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5f37837a4a2efd583dc3aaf2f7b3d02f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ac2ac0f42aff860bcf2167fd5d01a24e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e8088c8e910743a15e0914acc7bf6e6e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder].amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f597934953747370cf60ed592724c062\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder].hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1f2047116156cb77916c13f5940f80ac\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element:not(.amp-notsupported)>[fallback]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"add339ec65b68502249bfa77ca6e7956\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container>[placeholder].amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"efa7e3ef4c6af1f35e0cc3157a434732\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container>[placeholder].hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1cab7b841eb94d415c495c4e963fd93\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[fallback]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a0cd33acd45ade5cdb7b101eec489685\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e0a007a258e63e30610eedaf4166cd44\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8a5a9a51902eba28aba28f3dc5d63314\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7627de0161e40639a3284a9da3f07244\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-hidden-by-media-query\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1d9b23ae0d737d0ce55e8942c72473c2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element-error\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"86126f5d472d40586dc65e040fe2e388\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element-error:before\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a2db1da3fca457f573c8f946d2626f15\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-scroll-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9d8399c965095d9dd0683dca6b17cb2a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-scroll-container.amp-active\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"15a888e79f5e1e182758333e8aed8349\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-loading-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"207559750b0f3bd71acd406b5d1fe85f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt>.i-amphtml-loading-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"931fc2a18a45ccf3690af57d90552e1d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-loading-container.amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9b14ca3eea5c95c289e619458db2381c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[overflow]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6226542c6d4da8e2219b7d1dfab332dc\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[overflow]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bd54f11dad81cb6c72d924322908d6d9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[overflow].amp-visible\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8dfc48bb6b9b6286d08e9ddf113eeec6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie>amp-analytics\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"100a03e0c840b67977bf9c5decf711fe\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-accordion:not(.i-amphtml-built)>section>:last-child\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6bf733ed6d30bbd71a9eb5826db12fb4\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f83e0253d1d4a0a6a85fd05e763475d5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c9033f7038081256941379863aae103c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"76433cca2e00a68400373d60cf6f0513\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"62860cb1664e9a052e19f2c545c91c4e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"dcd77f2a6f9f9522e1c5d024186255b0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-anim\",\"element_attributes\":{\"alt\":\"Jackpot Slot\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/tips-menang.gif\",\"width\":\"640\",\"height\":\"183\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b1ceaa16b0df0f5570ef697609873a03\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-anim\",\"element_attributes\":{\"alt\":\"Jackpot Slot\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/tips-menang.gif\",\"width\":\"640\",\"height\":\"183\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3d1578a216bc1f57982436962e7e22d5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b2ae859ca84bafdf81ddf4108f0f232c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5afa01d22f93dcac5d576ce8bd45077b\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3ae64f8e3434e063ffe2801fae615931\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f4e69dbd0d8b48e89d38cb925763e3af\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"588b3e45124d098cb6ef84e7a2a2509a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"63cce02d8c29d0337c989afceaa35a32\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"276cf4eb810de7ce63a2c1032329dc3a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0a623af3ecbf5280833e8a65944f6021\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"458c75ece7c3149e05af34e3ce13c76e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0b766511de69da49106546f306e83146\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a521746ec6d166a090c86b115d7a9688\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"39fd6b74c9b4addb2562963f23398dad\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ad082713c5e670893d13526536657b2f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"364a955c675a53398eac5ee4f0967bb4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8f154de0abb014521a8329e9b84963da\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3f1c9a63cd2edd37284437774f936ecd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e75555d2e56ff66818510362a844520d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7120a09543cf3b1cca4962415cbff6c0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a483af5fe86e35a9d69e48d2993f6334\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6edacc102ae8a1e31ddc2991ddce6bf2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8d39c0df624d09a5c792287e0f51f227\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"59904f207b6dff062b67872b17f7d4dd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"24837ef6bc65a728a01ee4ab44d5b7e5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"802c1720b6074c5e946f4bdc737159bf\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3dc4319f60b4f4ef16fbf8b79a7e4e16\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7b3244efc84e471f4602005024a8a8ff\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f26da11175246dcc7856dd580526c6fe\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d449ba8f544f21b44c50c472fed4c49f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6d87618514cbe83eba3a5d44afefe9b2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ac9b1134ce514acbef0f3ed832a22621\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c9fdc47bfd9582932ee50adf76bc658d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2f7f66c19c08db7f71ac4c3b3592ef49\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7f4351c83771c7ca79e45c7880ab4fb9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f7d7a8b08ab6cf9f727bd619e503002d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"207153a6d40925603f4a5367794d0109\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"339287f0a393a42ab87ba8689d0e0998\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pragmatic\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pragmatic.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"44493061bad042ac4ba67ea55f3eb524\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pragmatic\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pragmatic.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"eb4b318bd9844d1d89a58a46cc5d15cb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"509392f7772bd0608c5fd44a2e494e0a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"332a8e1938e1247c7bfefb180295c8ed\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"habanero\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/habanero.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2bd0a89b6e66870cda5f44dfb5bf6ed9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"habanero\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/habanero.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a83705b718e3abe8610ba6052bf4612c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2449eea9b4ded25bd9ca53a6a33d624c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5aeb7d593fee7b735eaff4fd1b27f2d6\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d076791fa344cbb016d3c8b31e5d8a2a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b6af6f71478f43b01f35484551e32945\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ttg\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ttg.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"1cedeb8d3685d736ad04df719bb1d660\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b2c677e199534ea996f0fba9bef425ca\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9275ad111ebfa32170791c9b38d87878\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d84eff10f8c6acb764406d5d24447c80\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"67d7e6ac48eed2646ea9316e51e283f1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"820fb7030dbe44f0e5c3c6d203e371f4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f7dff93b5c05cc46f2425c8d42d2f6c3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"sexy gaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sexygaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ca676852e573e74a1978c177f7150085\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"sexy gaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sexygaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"83ea3f15cc9167b42e0fcec04724b054\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"43ee0ffac52a6b0d4bad67b8b1d3bf87\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8d79a76b650d973e81c7b34960767ed9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"idnlive\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/idnlive.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ca1d14259a252803ebfaf57353503759\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"idnlive\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/idnlive.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6ce7160f4727622b2c86edcc891230e9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"4ca8b24c405f053b5bbf36ebafd0ed5e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5c4c552d0f86271fafb6722cc567bfb3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a2994859cf57076f43fb88c78280badc\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7d3ee3196bd84b5ec362be9b794c77fe\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7938e2bf4ebde18e29dd2a934f29df61\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"fc3209ef55292b86a63692a7144e979c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"aba801beb8f1700360e8a73cdd02e3e1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"4027486a3b922db649366a6445ae906c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"43c47de6f7f64a3d1806ab528e57b1fb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"1c619d5e444706fe81f0edc8117e194d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3b06a40158ec720c60aedcab7b0bbd0c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5aa893f7cd897480267eb6ce1a1136c4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"28737599554d0339f3f7fe7e95b5a748\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d073289ac37ccdd33a71b6e70808a922\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8a42efe8e2f20709f539920fb178e627\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5f463cae494b511a99d1609b664719f2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d623e1a116bf6b26764813fb6fa1b687\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e0455c0d2d0fcf810d9f1aa11397479\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"maybank\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/maybank.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"90a77d7d1b6c89c44f5c6dac2d1bd410\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"maybank\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/maybank.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5f54b6bc76c3c731a6f6ccad9b2fc5f9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"297fbdada7b69c0ffcba2588fff1daed\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3f468f4c26258ae0eb1f443e0af89908\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f158b5578094c9ab4b803c978d3f3c12\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7cd55e67301e99cc315d883d0a15e4cd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"327c430718e73ec34fe89fe9e37394b1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c8e40597a77f67d4181bc2ad93d030a2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"telkomsel\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/telkomsel.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5dc21845b442abf8caefa2034025b209\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"telkomsel\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/telkomsel.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"96f691b9d1c2382cccdc0f16c795eab2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"212eef404e7aecd6bbdb82fa82a7476d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"de2fb5d6ba6e1def48f338808cf8625b\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"db737007a0445f4c686fdb4422e37a13\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"55320d73f312c61b7c994e96496d3b89\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"829ad2bcdf43980286bb7b357081d349\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2948a5adde172d5c5cea2b50f288e2ac\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"link aja\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/linkaja.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7a2b47de5d5027fc77e03fc082255551\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0a5caba6aa7ff2f853d77f355bf552b3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cf00ada513a65ef3aa7076f31704345e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5fa14d0ee5126a2cbafeec1854c4c8ba\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6f0e0df11772639d8e8ec5fd009c17b0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2691cd24b0e7ef8cd6b1e34253306431\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e11a26aa2ad342bb36c19b79ab09e93f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"async\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0.mjs\",\"type\":\"module\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1d6511080509f8f89501f92db80d5ad3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"async\":\"\",\"nomodule\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0.js\",\"crossorigin\":\"anonymous\"},\"node_name\":\"nomodule\",\"parent_name\":\"script\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a1170acfbe89118b02612d924454ba77\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0\\/amp-anim-0.1.mjs\",\"async\":\"\",\"custom-element\":\"amp-anim\",\"type\":\"module\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"621a0620cddff518c050f892caa46f15\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"async\":\"\",\"nomodule\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0\\/amp-anim-0.1.js\",\"crossorigin\":\"anonymous\",\"custom-element\":\"amp-anim\"},\"node_name\":\"nomodule\",\"parent_name\":\"script\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5df0ca684b4c726043824560780c6d94\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a95a4eaef4c51496030dc7c80a848e52\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2b14c97bdc2b8d0ff2579f955fcc9d3a\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"78fc20759507ae314726b15f101df5cc\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Jackpot Slot\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/tips-menang.gif\",\"width\":\"640\",\"height\":\"183\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-anim\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f087b7093b90c6bd722e3cfba2149f9d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"26c8ad566f90895dd571588b0206682e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b508819e08ea6a8fcda3f98c23f01085\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"bdad24da3f4c1a4afa0263572280427c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f311efde56281d9471cce3b81ab4e2e3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f3f86f7561afc02d31e44fa7c2ae08a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bb2ed584b00392ec0d0eb081983ca34e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ddb63efb65b8b25324fe3c3969e3e5eb\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"984e4841895598da2bc6d1daada6eca5\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e9d17b40cff9db1521a162c30423bc59\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9f0ead2252c5901ec732b22574a63f3f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a2945f0d940c0c8e1fdf369171b0879e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"06fc760147e823d12cf4bdafaba06a9d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"61fd7bfee89f5c4615cb71511ae35e3d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"124430ff42a8ecf042e36dd43e2cf3df\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0f5e0bba069e85da844f8b31609026f8\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"918eec4b45fa9d1fed17bd1bb19dbec2\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"bb46d10cc26208936ed88a3dd3d855f6\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"af5d1b580f4d36fbe1d6df9912ff4f14\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"10a4cf00df02f56f1438ce013ced2704\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"08dd9140033211df73e2eef4abb86e4f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f983dcaa814a264544e60745ec4a3539\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d40a5206c038cd5a080a71d483986592\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"05862b2e9f7ed7c8418dbc3b8a3f2d77\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3aa71fd0e6ce0aa9fccd742ce52f0393\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2f1e23af69ac21ac2f5e151d3ff124ae\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"fa0e24486ee10c13ad912978627a140d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"867cc544938196af64b79b4ce7e6e4ea\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3330a02bb76f117d7d841adb4f55d9fe\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b015b29921919700cc02f7b3c7736dde\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b2122012c8f6ee47f4c3573775f52cd3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9d12273fed7ef05e1ee182c451a877a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"88fd198c377424d3ee98f10c95cb7483\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"290b8b2174564b4852b548e0e11c4a39\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d46432a8cedd60ac210c61410bc6df64\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e16ae825fed3c279e2c9d4dccc6586ed\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b090ad96786f23f68d17bb48d4e10910\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"pragmatic\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pragmatic.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"418f1b22d9c1dfe1bfc3b8c968d3f7c8\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b33039180d7711dd0ebe40da9c877ff2\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"habanero\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/habanero.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"21aece179c2005210caea7862aa9957c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b58234a7798889735ad2aacc728e9ed4\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"23d1ef00083eb55697c4e71fdd3a78c5\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"ttg\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ttg.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ca51678da00f20bdcb04db1b379447dc\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bb1b0e886f7be10a58e9e71acbd24348\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"94232c49fc235dc5c70009429e05e93f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e54f6ed8723cb33f3550efbfe3018750\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"sexy gaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sexygaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"63e9e7b9a3c5bbba993d76a3958c9758\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d57dfa739733177ca52105a4c47b467a\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"idnlive\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/idnlive.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8b8ea83f8844293493697f7db4146029\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b7844666f2c3772175df23670a6ca735\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"86801a7e55eb84dcf4d6ba9942b6663b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"184507215bcd74f3996a279622328e01\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0c010fc8459d8cb6a328f1a82bcb3a1e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3c34dccfe3d3dd71c9bf53e4ea0dbd9c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3556b6463a9b6f81ac6550c12513e058\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cbd30b70b79b5756957e663945a72606\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8aedabb81fef4a2e08fcd6f55ae408c9\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9335249ad09a8c11636b1bf34985547a\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3195de98192cc548bb70376e053fbb2e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5ef3c46a4f96d4382dce19f36ffabdf9\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"telkomsel\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/telkomsel.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1b3e590ab29e330c8db6953b87365dd1\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8065060c4500e33edf1fe72ad26441a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7f812c36d7a2a1b6a6e4163e26c6645d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e0c78a7ef15d83938758d95bff5859ed\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"link aja\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/linkaja.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"be7d3a22cafa6ecff688708f3794c10b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"24f45739d9a8eebf8f26a17478432585\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"03654a8194d1e8f1fef3bf85513596ba\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}}]','https://lion288slot.com/hello-world/','','publish','closed','closed','','d233e74522efd8c5a50c9554c4a8a666','','','2024-08-22 23:08:19','2024-08-22 16:08:19','',0,'https://lion288slot.com/amp_validated_url/d233e74522efd8c5a50c9554c4a8a666/',0,'amp_validated_url','',0);
INSERT INTO `wp_posts` VALUES
(7,1,'2024-08-22 23:08:19','2024-08-22 16:08:19','[{\"term_slug\":\"32cbcdc5dfac231079dd911df24735d3\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6c341bfced358c62f6d0507cb02c595c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f74dd261c0bbb601c9c2bebac91866cc\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed-legacy>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1103860b579a837033c4baa2578d2cde\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"05632efcdb03f348543a908bd58b5208\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d966a13a6b153c2af02d7685435e2191\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7c10c9a7a5da21835a8316b5d7e21491\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9b6bd38549de6e60687ba6ef004148ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f49c84f57dc012e17cba9a783b3230c9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1b569efb19a9b26f5c0b63aa5ccb6f98\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body .i-amphtml-lightbox-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"98f7f952cdf89436d1fe8bfef9cd1dff\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body[i-amphtml-lightbox]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"967f2883d59e1961f74302d034e20363\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper.i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"74cfdfb0b90c5a30a15f515ec5793db1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a15e44da56c1bf79870abe5023b84a95\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-action]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d16f8f1a8797a2fe257afdf7e0770c55\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-section]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e1339dfd5ce836fb59343ea2280744a2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e304f4ec3f6df028a03c5a319927aec1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-story .i-amphtml-loader-background\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"90d71052e4e57147bf5c7b77a4474890\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-autocomplete-results\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"4968113fe0bf02feb08d10681aacb08a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1c7043094426cc546f37b75044b4c03\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-blurry-placeholder\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ab11958d7828e129dfcc6dacfa6538f6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=nodisplay]:not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7a56a2da869de0147a3128ae03b6a7ce\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"06e2f1baa02202f8b6e64ae762b52e31\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fixed][width][height]:not(.i-amphtml-layout-fixed)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"abb7edd7244e18c2bcf1206bc5c2f63b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-responsive\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cbb02f9cbe1032d8273f84e1763271ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=responsive][width][height]:not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"02be1b3c96a02bb5618ee00f49035114\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1c24de44529a455723b7f5ecfb325e0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"424e38f6208529dda0deca9b5761551b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cf235538b0e34806687ec3e05217f3d7\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c994637899b3260f3b08af60acd30b7e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic .i-amphtml-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"62bbfff47a671421852c730e6e75c52c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-intrinsic-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7956acf2a344f92b5c1d642d96009eba\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"85f1a444eefbab93f26482896ef0517d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed-height\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3763c1d45150b1bb670dcf26f6970f95\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"369be1b254f130414b0198b186e5c8e9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fill\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"597c7a1cda0081db7abf51f1fff65200\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fill.i-amphtml-notbuilt\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b7eced3df1f3c799a47532b24d3ae213\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fill]:not(.i-amphtml-layout-fill)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0ebb421eab88295615fc41dedf317e93\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-flex-item\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ac7607581d0bf919bad773c14c4e7f71\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=flex-item]:not(.i-amphtml-layout-flex-item)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cc6617893416bac6381cfe9f2610fa8d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fluid\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"05b03d0f41d6c796546f040d56472ad2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"211f493cfc36aa016bbd1cabeedc95b5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-awaiting-size\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"163cff4c70bc46f71881b3e7e66d46a6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1bf411fe0f9d7bcf0de1ee9a82af86f8\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"704c2c3a7fab806172501bb0c68b6521\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined .i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"851e321f225a5e780c69c1093c4fa080\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3b05a628fc5434156f1011e17f61cfc0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0810e2f827a96c5d28f4a097adf7c065\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"877f1688632ddcb840fcc05b782bfef5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67ad44335dfff37be43caf4b3ea9055e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-unresolved\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"458cc5f045ce35dfc6b0299062b0487c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-select-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8b1461c0ec91cc0e50413fcc3df42893\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a79d184c4bf2c1ac6bdb8b0e03fcbed5\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0a26ecf71f42183d674b37f23a3b5f76\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0991ec0e12d22ff55065ce8e97602a6c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1a21b76af7f00d9e2a1d87ea823fc85c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"963b1d5a1619a8e07bd1801383df5fa0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not([layout=container]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e3127efb582e232b19e444f59b9e3d0b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8c5c0526583da8fd3120c40c995b5f65\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not([layout]):not(.i-amphtml-element)>*\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"249e96497ba86b7690a59ac6fce8eb65\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8eeb3fbf4ea07ba9ef69ad542775dfe1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt:not(.i-amphtml-layout-container)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ffba64de2949b671984b2dc743d51a96\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not([layout=container]):not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"509454f95506892bd6c5af346f1b2213\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-ghost\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c582270ca7786dd0383fd758b94745cb\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"459a208a950bd2aa1532a3740d8fb094\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout]:not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5f37837a4a2efd583dc3aaf2f7b3d02f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ac2ac0f42aff860bcf2167fd5d01a24e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e8088c8e910743a15e0914acc7bf6e6e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder].amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f597934953747370cf60ed592724c062\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[placeholder].hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1f2047116156cb77916c13f5940f80ac\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element:not(.amp-notsupported)>[fallback]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"add339ec65b68502249bfa77ca6e7956\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container>[placeholder].amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"efa7e3ef4c6af1f35e0cc3157a434732\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container>[placeholder].hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1cab7b841eb94d415c495c4e963fd93\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[fallback]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a0cd33acd45ade5cdb7b101eec489685\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e0a007a258e63e30610eedaf4166cd44\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8a5a9a51902eba28aba28f3dc5d63314\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt>[placeholder]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7627de0161e40639a3284a9da3f07244\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-hidden-by-media-query\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1d9b23ae0d737d0ce55e8942c72473c2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element-error\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"86126f5d472d40586dc65e040fe2e388\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element-error:before\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a2db1da3fca457f573c8f946d2626f15\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-scroll-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9d8399c965095d9dd0683dca6b17cb2a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"i-amphtml-scroll-container.amp-active\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"15a888e79f5e1e182758333e8aed8349\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-loading-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"207559750b0f3bd71acd406b5d1fe85f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-notbuilt>.i-amphtml-loading-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9b14ca3eea5c95c289e619458db2381c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[overflow]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6226542c6d4da8e2219b7d1dfab332dc\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-size-defined>[overflow]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bd54f11dad81cb6c72d924322908d6d9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element>[overflow].amp-visible\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8dfc48bb6b9b6286d08e9ddf113eeec6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie>amp-analytics\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"100a03e0c840b67977bf9c5decf711fe\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-accordion:not(.i-amphtml-built)>section>:last-child\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6bf733ed6d30bbd71a9eb5826db12fb4\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f83e0253d1d4a0a6a85fd05e763475d5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c9033f7038081256941379863aae103c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"76433cca2e00a68400373d60cf6f0513\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"62860cb1664e9a052e19f2c545c91c4e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"dcd77f2a6f9f9522e1c5d024186255b0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-anim\",\"element_attributes\":{\"alt\":\"Jackpot Slot\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/tips-menang.gif\",\"width\":\"640\",\"height\":\"183\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b1ceaa16b0df0f5570ef697609873a03\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-anim\",\"element_attributes\":{\"alt\":\"Jackpot Slot\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/tips-menang.gif\",\"width\":\"640\",\"height\":\"183\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3d1578a216bc1f57982436962e7e22d5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5afa01d22f93dcac5d576ce8bd45077b\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3ae64f8e3434e063ffe2801fae615931\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f4e69dbd0d8b48e89d38cb925763e3af\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"588b3e45124d098cb6ef84e7a2a2509a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"63cce02d8c29d0337c989afceaa35a32\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"276cf4eb810de7ce63a2c1032329dc3a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0a623af3ecbf5280833e8a65944f6021\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"458c75ece7c3149e05af34e3ce13c76e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0b766511de69da49106546f306e83146\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a521746ec6d166a090c86b115d7a9688\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"39fd6b74c9b4addb2562963f23398dad\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ad082713c5e670893d13526536657b2f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"364a955c675a53398eac5ee4f0967bb4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8f154de0abb014521a8329e9b84963da\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3f1c9a63cd2edd37284437774f936ecd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e75555d2e56ff66818510362a844520d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7120a09543cf3b1cca4962415cbff6c0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a483af5fe86e35a9d69e48d2993f6334\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6edacc102ae8a1e31ddc2991ddce6bf2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8d39c0df624d09a5c792287e0f51f227\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"59904f207b6dff062b67872b17f7d4dd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"24837ef6bc65a728a01ee4ab44d5b7e5\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"802c1720b6074c5e946f4bdc737159bf\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3dc4319f60b4f4ef16fbf8b79a7e4e16\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7b3244efc84e471f4602005024a8a8ff\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f26da11175246dcc7856dd580526c6fe\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d449ba8f544f21b44c50c472fed4c49f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6d87618514cbe83eba3a5d44afefe9b2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ac9b1134ce514acbef0f3ed832a22621\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c9fdc47bfd9582932ee50adf76bc658d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2f7f66c19c08db7f71ac4c3b3592ef49\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7f4351c83771c7ca79e45c7880ab4fb9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f7d7a8b08ab6cf9f727bd619e503002d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"207153a6d40925603f4a5367794d0109\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"44493061bad042ac4ba67ea55f3eb524\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pragmatic\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pragmatic.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"eb4b318bd9844d1d89a58a46cc5d15cb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"509392f7772bd0608c5fd44a2e494e0a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2bd0a89b6e66870cda5f44dfb5bf6ed9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"habanero\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/habanero.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a83705b718e3abe8610ba6052bf4612c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2449eea9b4ded25bd9ca53a6a33d624c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5aeb7d593fee7b735eaff4fd1b27f2d6\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d076791fa344cbb016d3c8b31e5d8a2a\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b6af6f71478f43b01f35484551e32945\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ttg\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ttg.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"72516e825dc365b1408d36e9c8bc8253\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ttg\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ttg.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"1cedeb8d3685d736ad04df719bb1d660\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b2c677e199534ea996f0fba9bef425ca\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9275ad111ebfa32170791c9b38d87878\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d84eff10f8c6acb764406d5d24447c80\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"67d7e6ac48eed2646ea9316e51e283f1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"820fb7030dbe44f0e5c3c6d203e371f4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f7dff93b5c05cc46f2425c8d42d2f6c3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"sexy gaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sexygaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"83ea3f15cc9167b42e0fcec04724b054\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"43ee0ffac52a6b0d4bad67b8b1d3bf87\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8d79a76b650d973e81c7b34960767ed9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"idnlive\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/idnlive.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ca1d14259a252803ebfaf57353503759\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"idnlive\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/idnlive.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6ce7160f4727622b2c86edcc891230e9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"4ca8b24c405f053b5bbf36ebafd0ed5e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e2152cdd7af9215ef49e56f632e70df\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjYwIiB3aWR0aD0iMTIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5c4c552d0f86271fafb6722cc567bfb3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a2994859cf57076f43fb88c78280badc\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7d3ee3196bd84b5ec362be9b794c77fe\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7938e2bf4ebde18e29dd2a934f29df61\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"fc3209ef55292b86a63692a7144e979c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"aba801beb8f1700360e8a73cdd02e3e1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"4027486a3b922db649366a6445ae906c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"43c47de6f7f64a3d1806ab528e57b1fb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"1c619d5e444706fe81f0edc8117e194d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3b06a40158ec720c60aedcab7b0bbd0c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5aa893f7cd897480267eb6ce1a1136c4\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"28737599554d0339f3f7fe7e95b5a748\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d073289ac37ccdd33a71b6e70808a922\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"8a42efe8e2f20709f539920fb178e627\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5f463cae494b511a99d1609b664719f2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d623e1a116bf6b26764813fb6fa1b687\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0e0455c0d2d0fcf810d9f1aa11397479\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"maybank\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/maybank.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"90a77d7d1b6c89c44f5c6dac2d1bd410\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"maybank\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/maybank.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5f54b6bc76c3c731a6f6ccad9b2fc5f9\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"297fbdada7b69c0ffcba2588fff1daed\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3f468f4c26258ae0eb1f443e0af89908\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f158b5578094c9ab4b803c978d3f3c12\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7cd55e67301e99cc315d883d0a15e4cd\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"327c430718e73ec34fe89fe9e37394b1\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"c8e40597a77f67d4181bc2ad93d030a2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"telkomsel\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/telkomsel.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"96f691b9d1c2382cccdc0f16c795eab2\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"212eef404e7aecd6bbdb82fa82a7476d\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"de2fb5d6ba6e1def48f338808cf8625b\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"db737007a0445f4c686fdb4422e37a13\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"55320d73f312c61b7c994e96496d3b89\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"829ad2bcdf43980286bb7b357081d349\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6aa4139b7260887ec367e8326562aa4c\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"link aja\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/linkaja.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"7a2b47de5d5027fc77e03fc082255551\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0a5caba6aa7ff2f853d77f355bf552b3\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cf00ada513a65ef3aa7076f31704345e\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5fa14d0ee5126a2cbafeec1854c4c8ba\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"6f0e0df11772639d8e8ec5fd009c17b0\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-intrinsic\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2691cd24b0e7ef8cd6b1e34253306431\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-layout-size-defined\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes i-amphtml-layout-intrinsic i-amphtml-layout-size-defined\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b86c416482be3fc0a436766c9b29740f\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-sizer\",\"node_name\":\"class\",\"parent_name\":\"i-amphtml-sizer\",\"element_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"i-amphtml-sizer\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"cb2019334c88677deceb643e341e6fbb\",\"data\":{\"code\":\"DISALLOWED_ATTR_CLASS_NAME\",\"type\":\"html_attribute_error\",\"class_name\":\"i-amphtml-intrinsic-sizer\",\"node_name\":\"class\",\"parent_name\":\"amp-img\",\"element_attributes\":{\"alt\":\"\",\"aria-hidden\":\"true\",\"class\":\"i-amphtml-intrinsic-sizer amp-wp-unknown-size amp-wp-unknown-width amp-wp-unknown-height amp-wp-enforced-sizes\",\"role\":\"presentation\",\"src\":\"data:image\\/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI2IiB3aWR0aD0iMTEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==\",\"width\":\"1200\",\"height\":\"400\",\"layout\":\"intrinsic\"},\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e11a26aa2ad342bb36c19b79ab09e93f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"async\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0.mjs\",\"type\":\"module\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1d6511080509f8f89501f92db80d5ad3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"async\":\"\",\"nomodule\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0.js\",\"crossorigin\":\"anonymous\"},\"node_name\":\"nomodule\",\"parent_name\":\"script\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a1170acfbe89118b02612d924454ba77\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0\\/amp-anim-0.1.mjs\",\"async\":\"\",\"custom-element\":\"amp-anim\",\"type\":\"module\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"621a0620cddff518c050f892caa46f15\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"async\":\"\",\"nomodule\":\"\",\"src\":\"https:\\/\\/cdn.ampproject.org\\/v0\\/amp-anim-0.1.js\",\"crossorigin\":\"anonymous\",\"custom-element\":\"amp-anim\"},\"node_name\":\"nomodule\",\"parent_name\":\"script\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"5df0ca684b4c726043824560780c6d94\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/logo.png\",\"alt\":\"Lion288\",\"width\":\"300\",\"height\":\"99\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a95a4eaef4c51496030dc7c80a848e52\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"slider\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/slider\\/slider.jpg\",\"width\":\"1920\",\"height\":\"613\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f087b7093b90c6bd722e3cfba2149f9d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"26c8ad566f90895dd571588b0206682e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Gates of Olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Olympus.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b508819e08ea6a8fcda3f98c23f01085\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"bdad24da3f4c1a4afa0263572280427c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Starlight Princess<\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Starlight Princess.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f311efde56281d9471cce3b81ab4e2e3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f3f86f7561afc02d31e44fa7c2ae08a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gates of olympus\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Sweet Bonanza.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bb2ed584b00392ec0d0eb081983ca34e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"ddb63efb65b8b25324fe3c3969e3e5eb\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"power of thor megaways\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Power of Thor Megaways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"984e4841895598da2bc6d1daada6eca5\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"e9d17b40cff9db1521a162c30423bc59\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasure Wild\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Aztec Gems.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9f0ead2252c5901ec732b22574a63f3f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a2945f0d940c0c8e1fdf369171b0879e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Aztec Bonanza\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Daily Wins\\/Gates of Gatot Kaca.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"06fc760147e823d12cf4bdafaba06a9d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"61fd7bfee89f5c4615cb71511ae35e3d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"treasure bowl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Mahjong Ways.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"124430ff42a8ecf042e36dd43e2cf3df\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"0f5e0bba069e85da844f8b31609026f8\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Break Away Lucky Wilds\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Koi Gate.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"918eec4b45fa9d1fed17bd1bb19dbec2\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"bb46d10cc26208936ed88a3dd3d855f6\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"1000 Wishes\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gem Saviour Conquest.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"af5d1b580f4d36fbe1d6df9912ff4f14\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"10a4cf00df02f56f1438ce013ced2704\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Chronicles of Olympus X Up\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Gold Blitz.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"08dd9140033211df73e2eef4abb86e4f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"f983dcaa814a264544e60745ec4a3539\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Elven Gold\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Roma.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d40a5206c038cd5a080a71d483986592\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"05862b2e9f7ed7c8418dbc3b8a3f2d77\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Silverback Multiplier Mountain\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Popular Games\\/Fiery Sevens.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3aa71fd0e6ce0aa9fccd742ce52f0393\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"2f1e23af69ac21ac2f5e151d3ff124ae\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Phoenix Rises\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Lucky Neko.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"fa0e24486ee10c13ad912978627a140d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"867cc544938196af64b79b4ce7e6e4ea\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Fortune Tiger\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Fortune Tiger.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"3330a02bb76f117d7d841adb4f55d9fe\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b015b29921919700cc02f7b3c7736dde\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"garuda gems\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Treasures of Aztec.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"b2122012c8f6ee47f4c3573775f52cd3\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"9d12273fed7ef05e1ee182c451a877a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Wild Bandito\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Wild Bandito.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"88fd198c377424d3ee98f10c95cb7483\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"290b8b2174564b4852b548e0e11c4a39\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"wild fireworks\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Dreams of Macau.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"d46432a8cedd60ac210c61410bc6df64\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"Treasures Aztec\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/games\\/Hot Games\\/Rooster Rumble.jpg\",\"width\":\"200\",\"height\":\"200\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"data-hero-candidate\":\"\",\"data-hero\":\"\",\"i-amphtml-ssr\":\"\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-ssr\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b090ad96786f23f68d17bb48d4e10910\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"pragmatic\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pragmatic.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"418f1b22d9c1dfe1bfc3b8c968d3f7c8\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"pgsoft\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/pgsoft.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b33039180d7711dd0ebe40da9c877ff2\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"habanero\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/habanero.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"21aece179c2005210caea7862aa9957c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"cq9\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/cq9.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b58234a7798889735ad2aacc728e9ed4\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"spadegaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/spadegaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ca51678da00f20bdcb04db1b379447dc\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"joker\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/joker.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bb1b0e886f7be10a58e9e71acbd24348\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"microgaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/microgaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"94232c49fc235dc5c70009429e05e93f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"ion casino\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/ioncasino.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e54f6ed8723cb33f3550efbfe3018750\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"sexy gaming\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sexygaming.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"63e9e7b9a3c5bbba993d76a3958c9758\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"allbet\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/allbet.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8b8ea83f8844293493697f7db4146029\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"saba sports\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/provider\\/sabasports.png\",\"width\":\"120\",\"height\":\"60\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b7844666f2c3772175df23670a6ca735\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bca\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bca.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"86801a7e55eb84dcf4d6ba9942b6663b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"danamon\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/danamon.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"184507215bcd74f3996a279622328e01\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"permata\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/permata.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"0c010fc8459d8cb6a328f1a82bcb3a1e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"mandiri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/mandiri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3c34dccfe3d3dd71c9bf53e4ea0dbd9c\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bni\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bni.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a131091640987968f73bc9f01447c6d7\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3556b6463a9b6f81ac6550c12513e058\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"btpn\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/btpn.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cbd30b70b79b5756957e663945a72606\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"panin\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/panin.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b0105ad0880ee321888f8a360b977e13\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"maybank\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/maybank.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8aedabb81fef4a2e08fcd6f55ae408c9\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"bjb\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/bjb.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9335249ad09a8c11636b1bf34985547a\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"xl\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/xl.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"3195de98192cc548bb70376e053fbb2e\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"tri\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/tri.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5ef3c46a4f96d4382dce19f36ffabdf9\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"telkomsel\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/telkomsel.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1b3e590ab29e330c8db6953b87365dd1\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"axis\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/axis.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8065060c4500e33edf1fe72ad26441a0\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/dana.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7f812c36d7a2a1b6a6e4163e26c6645d\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"ovo\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/ovo.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e0c78a7ef15d83938758d95bff5859ed\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"link aja\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/linkaja.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"be7d3a22cafa6ecff688708f3794c10b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"gopay\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/gopay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"24f45739d9a8eebf8f26a17478432585\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"dana\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/shopeepay.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}},{\"term_slug\":\"a35832e2f5938a6647333b9358c43743\",\"data\":{\"node_name\":\"i-amphtml-sizer\",\"parent_name\":\"amp-img\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"slot\":\"i-amphtml-svc\",\"class\":\"\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"03654a8194d1e8f1fef3bf85513596ba\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"alt\":\"jenius\",\"src\":\"https:\\/\\/Lion288Slot.com\\/wp-content\\/themes\\/mabar88\\/images\\/bank\\/jenius.png\",\"width\":\"110\",\"height\":\"26\",\"class\":\"amp-wp-enforced-sizes\",\"layout\":\"intrinsic\",\"i-amphtml-layout\":\"intrinsic\"},\"node_name\":\"i-amphtml-layout\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[]}}]','https://lion288slot.com/sample-page/','','publish','closed','closed','','1ff45b2bacf5c42eaa461a76e03534f6','','','2024-08-22 23:08:19','2024-08-22 16:08:19','',0,'https://lion288slot.com/amp_validated_url/1ff45b2bacf5c42eaa461a76e03534f6/',0,'amp_validated_url','',0);
INSERT INTO `wp_posts` VALUES
(13,1,'2024-08-22 23:02:16','2024-08-22 16:02:16','','Lion288 Favicon','','inherit','closed','closed','','mabar-favicon','','','2024-08-22 23:02:21','2024-08-22 16:02:21','',0,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-Favicon.jpg',0,'attachment','image/jpeg',0),
(14,1,'2024-08-22 23:02:21','2024-08-22 16:02:21','https://lion288slot.com/wp-content/uploads/2024/08/cropped-Mabar-Favicon.jpg','Lion288 Favicon','','inherit','','closed','','lion288-favicon','','','2024-08-22 23:02:21','2024-08-22 16:02:21','',13,'https://lion288slot.com/wp-content/uploads/2024/08/cropped-Mabar-Favicon.jpg',0,'attachment','image/jpeg',0),
(20,1,'2024-08-23 13:15:03','2024-08-23 06:15:03','<h1 style=\"text-align: center;\"><strong>Lion288 : Mission Digital Baru Level Up Cepat Jadi Champion</strong></h1>\n<div style=\"position: absolute; left: -9966px;\"></div>\n<p>\n<span style=\"position: absolute; left: -9655px; width: 1px; height: 1px;\">\n<a href=\"https://ashkim.ru/\" title=\"казино водка\">казино водка</a>\n</span>\n\n<span style=\"position: absolute; left: -9655px; width: 1px; height: 1px;\"><br/>\n<a href=\"https://www.rusolidarnost.ru/\" title=\"казино водка\">казино водка</a><br/>\n</span><br/>\nStrona internetowa <a href=\"https://przepisnaszycie.pl/\">Mostbet</a> została zoptymalizowana pod kątem łatwej nawigacji i przejrzystości.</p>\n<div style=\"position: absolute; left: -9966px;\">\n<p>Modern encryption ensures all data at <a href=\"https://glory-casino-bengali.com/\">Glory Casino</a> stays fully protected.</p>\n</div>\n','Lion288','','publish','closed','closed','','lion288','','','2025-10-30 23:00:06','2025-10-30 16:00:06','',0,'https://lion288slot.com/?page_id=20',0,'page','',0),
(21,1,'2024-08-23 13:14:14','2024-08-23 06:14:14','Mission digital baru Lion288 hadir bantu level up cepat, quest seru, strategi efektif, dan hadiah besar untuk champion Lion 288.','Lion288','','inherit','closed','closed','','indukan-mabar88','','','2025-10-05 13:13:38','2025-10-05 06:13:38','',20,'https://lion288slot.com/wp-content/uploads/2024/08/Indukan-Mabar88.png',0,'attachment','image/png',0),
(22,1,'2024-08-23 13:15:03','2024-08-23 06:15:03','<div class=\"sc-gelMue gpjXWo\">\r\n<div class=\"sc-dxtBLK cowIAl\">\r\n<h1 class=\"sc-gWoSmj sc-hJVpLM hDkGxE dWSsmD\" style=\"text-align: center;\"><strong><span class=\"sc-fTJzqL hFjSGk\">LION288 : LION 288 Welcome To The Entertainment Capital Game</span></strong></h1>\r\n</div>\r\n</div>','LION288','','inherit','closed','closed','','20-revision-v1','','','2024-08-23 13:15:03','2024-08-23 06:15:03','',20,'https://lion288slot.com/?p=22',0,'revision','',0),
(26,1,'2024-08-30 03:21:13','2024-08-29 20:21:13','<h1 style=\"text-align: center;\"><strong>Lion288 Daftar : Agen Game Dengan Keuntungan Besar Trusted</strong></h1>','Lion288 Daftar','','publish','closed','closed','','lion288-daftar','','','2024-08-30 03:21:13','2024-08-29 20:21:13','',0,'https://lion288slot.com/?p=26',0,'post','',0),
(27,1,'2024-08-30 03:20:56','2024-08-29 20:20:56','','Lion288 Daftar','','inherit','closed','closed','','mabar','','','2024-08-30 03:20:57','2024-08-29 20:20:57','',26,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar.jpg',0,'attachment','image/jpeg',0),
(28,1,'2024-08-30 03:21:13','2024-08-29 20:21:13','<h1 style=\"text-align: center;\"><strong>Lion288 Daftar : Agen Game Dengan Keuntungan Besar Trusted</strong></h1>','Lion288 Daftar','','inherit','closed','closed','','26-revision-v1','','','2024-08-30 03:21:13','2024-08-29 20:21:13','',26,'https://lion288slot.com/?p=28',0,'revision','',0),
(29,1,'2024-08-30 03:21:45','2024-08-29 20:21:45','<h1 style=\"text-align: center;\"><strong>Lion288 Register : Situs Game Online Populer Prize Terpopuler</strong></h1>','Lion288 Register','','publish','closed','closed','','lion288-register','','','2024-08-30 03:21:45','2024-08-29 20:21:45','',0,'https://lion288slot.com/?p=29',0,'post','',0),
(30,1,'2024-09-13 00:00:16','2024-09-12 17:00:16','<h1 style=\"text-align: center;\"><strong>Lion288 Login : Agen Game Online Big Win Dan Terbaik Populer</strong></h1>','Lion288 Login','','publish','closed','closed','','lion288-login','','','2024-08-30 03:22:20','2024-08-29 20:22:20','',0,'https://lion288slot.com/?p=30',0,'post','',0),
(31,1,'2024-09-27 00:00:16','2024-09-26 17:00:16','<h1 style=\"text-align: center;\"><strong>Lion288 Download : Situs Game Online Populer Prize Pool</strong></h1>','Lion288 Download','','publish','closed','closed','','lion288-download','','','2024-08-30 03:22:48','2024-08-29 20:22:48','',0,'https://lion288slot.com/?p=31',0,'post','',0),
(32,1,'2024-10-11 00:00:16','2024-10-10 17:00:16','<h1 style=\"text-align: center;\"><strong>Lion288 Online : Situs Dengan Games Online Terkenal Exclusive</strong></h1>','Lion288 Online','','future','closed','closed','','lion288-online','','','2024-08-30 03:23:29','2024-08-29 20:23:29','',0,'https://lion288slot.com/?p=32',0,'post','',0),
(33,1,'2024-10-25 00:00:17','2024-10-24 17:00:17','<h1 style=\"text-align: center;\"><strong>Lion288 Link : Situs Game Online Populer Prize Pool Terpopuler</strong></h1>','Lion288 Link','','publish','closed','closed','','lion288-link','','','2024-08-30 03:24:06','2024-08-29 20:24:06','',0,'https://lion288slot.com/?p=33',0,'post','',0),
(34,1,'2024-11-08 00:00:17','2024-11-07 17:00:17','<h1 style=\"text-align: center;\"><strong>Lion288 Alternatif : Agen Game Online Big Win Dan Populer</strong></h1>','Lion288 Alternatif','','publish','closed','closed','','lion288-alternatif','','','2024-08-30 03:24:33','2024-08-29 20:24:33','',0,'https://lion288slot.com/?p=34',0,'post','',0),
(35,1,'2024-11-22 00:00:17','2024-11-21 17:00:17','<h1 style=\"text-align: center;\"><strong>Lion288 Link Alternatif : Situs Game Online Populer Prize Pool</strong></h1>','Lion288 Link Alternatif','','publish','closed','closed','','lion288-link-alternatif','','','2024-08-30 03:25:07','2024-08-29 20:25:07','',0,'https://lion288slot.com/?p=35',0,'post','',0),
(36,1,'2024-12-06 00:00:17','2024-12-05 17:00:17','<h1 style=\"text-align: center;\"><strong>Download Lion288 Apk Mobile : Agen Game Besar Every Day</strong></h1>','Download Lion288 Apk Mobile','','publish','closed','closed','','download-lion288-apk-mobile','','','2024-08-30 03:25:41','2024-08-29 20:25:41','',0,'https://lion288slot.com/?p=36',0,'post','',0),
(37,1,'2024-12-20 00:00:18','2024-12-19 17:00:18','<h1 style=\"text-align: center;\"><strong>Link Alternatif Lion288 : Situs Game Online Populer Prize</strong></h1>','Link Alternatif Lion288','','publish','closed','closed','','link-alternatif-lion288','','','2024-08-30 03:26:23','2024-08-29 20:26:23','',0,'https://lion288slot.com/?p=37',0,'post','',0),
(38,1,'2024-01-03 00:00:18','2024-01-02 17:00:18','<h1 style=\"text-align: center;\"><strong>Daftar Lion288 : Situs Dengan Games Online Terkenal Exclusive</strong></h1>','Daftar Lion288','','publish','closed','closed','','daftar-lion288','','','2024-08-30 03:26:52','2024-08-29 20:26:52','',0,'https://lion288slot.com/?p=38',0,'post','',0),
(41,1,'2024-08-30 03:21:24','2024-08-29 20:21:24','','Lion288 Register','','inherit','closed','closed','','mabar-2','','','2024-08-30 03:21:27','2024-08-29 20:21:27','',29,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-1.jpg',0,'attachment','image/jpeg',0),
(42,1,'2024-08-30 03:21:45','2024-08-29 20:21:45','<h1 style=\"text-align: center;\"><strong>Lion288 Register : Situs Game Online Populer Prize Terpopuler</strong></h1>','Lion288 Register','','inherit','closed','closed','','29-revision-v1','','','2024-08-30 03:21:45','2024-08-29 20:21:45','',29,'https://lion288slot.com/?p=42',0,'revision','',0),
(43,1,'2024-08-30 03:21:53','2024-08-29 20:21:53','','Lion288 Login','','inherit','closed','closed','','mabar-3','','','2024-08-30 03:21:55','2024-08-29 20:21:55','',30,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-2.jpg',0,'attachment','image/jpeg',0),
(44,1,'2024-08-30 03:22:20','2024-08-29 20:22:20','<h1 style=\"text-align: center;\"><strong>Lion288 Login : Agen Game Online Big Win Dan Terbaik Populer</strong></h1>','Lion288 Login','','inherit','closed','closed','','30-revision-v1','','','2024-08-30 03:22:20','2024-08-29 20:22:20','',30,'https://lion288slot.com/?p=44',0,'revision','',0),
(45,1,'2024-08-30 03:22:27','2024-08-29 20:22:27','','Lion288 Download','','inherit','closed','closed','','mabar-4','','','2024-08-30 03:22:29','2024-08-29 20:22:29','',31,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-3.jpg',0,'attachment','image/jpeg',0),
(46,1,'2024-08-30 03:22:48','2024-08-29 20:22:48','<h1 style=\"text-align: center;\"><strong>Lion288 Download : Situs Game Online Populer Prize Pool</strong></h1>','Lion288 Download','','inherit','closed','closed','','31-revision-v1','','','2024-08-30 03:22:48','2024-08-29 20:22:48','',31,'https://lion288slot.com/?p=46',0,'revision','',0),
(47,1,'2024-08-30 03:22:54','2024-08-29 20:22:54','','Lion288 Online','','inherit','closed','closed','','mabar-5','','','2024-08-30 03:22:55','2024-08-29 20:22:55','',32,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-4.jpg',0,'attachment','image/jpeg',0),
(48,1,'2024-08-30 03:23:29','2024-08-29 20:23:29','<h1 style=\"text-align: center;\"><strong>Lion288 Online : Situs Dengan Games Online Terkenal Exclusive</strong></h1>','Lion288 Online','','inherit','closed','closed','','32-revision-v1','','','2024-08-30 03:23:29','2024-08-29 20:23:29','',32,'https://lion288slot.com/?p=48',0,'revision','',0),
(49,1,'2024-08-30 03:23:40','2024-08-29 20:23:40','','Lion288 Link','','inherit','closed','closed','','mabar-6','','','2024-08-30 03:23:42','2024-08-29 20:23:42','',33,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-5.jpg',0,'attachment','image/jpeg',0),
(50,1,'2024-08-30 03:24:06','2024-08-29 20:24:06','<h1 style=\"text-align: center;\"><strong>Lion288 Link : Situs Game Online Populer Prize Pool Terpopuler</strong></h1>','Lion288 Link','','inherit','closed','closed','','33-revision-v1','','','2024-08-30 03:24:06','2024-08-29 20:24:06','',33,'https://lion288slot.com/?p=50',0,'revision','',0),
(51,1,'2024-08-30 03:24:13','2024-08-29 20:24:13','','Lion288 Alternatif','','inherit','closed','closed','','mabar-7','','','2024-08-30 03:24:14','2024-08-29 20:24:14','',34,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-6.jpg',0,'attachment','image/jpeg',0),
(52,1,'2024-08-30 03:24:33','2024-08-29 20:24:33','<h1 style=\"text-align: center;\"><strong>Lion288 Alternatif : Agen Game Online Big Win Dan Populer</strong></h1>','Lion288 Alternatif','','inherit','closed','closed','','34-revision-v1','','','2024-08-30 03:24:33','2024-08-29 20:24:33','',34,'https://lion288slot.com/?p=52',0,'revision','',0),
(53,1,'2024-08-30 03:24:42','2024-08-29 20:24:42','','Lion288 Link Alternatif','','inherit','closed','closed','','mabar-8','','','2024-08-30 03:24:44','2024-08-29 20:24:44','',35,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-7.jpg',0,'attachment','image/jpeg',0),
(54,1,'2024-08-30 03:25:07','2024-08-29 20:25:07','<h1 style=\"text-align: center;\"><strong>Lion288 Link Alternatif : Situs Game Online Populer Prize Pool</strong></h1>','Lion288 Link Alternatif','','inherit','closed','closed','','35-revision-v1','','','2024-08-30 03:25:07','2024-08-29 20:25:07','',35,'https://lion288slot.com/?p=54',0,'revision','',0),
(55,1,'2024-08-30 03:25:13','2024-08-29 20:25:13','','Download Lion288 Apk Mobile','','inherit','closed','closed','','mabar-9','','','2024-08-30 03:25:19','2024-08-29 20:25:19','',36,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-8.jpg',0,'attachment','image/jpeg',0),
(56,1,'2024-08-30 03:25:41','2024-08-29 20:25:41','<h1 style=\"text-align: center;\"><strong>Download Lion288 Apk Mobile : Agen Game Besar Every Day</strong></h1>','Download Lion288 Apk Mobile','','inherit','closed','closed','','36-revision-v1','','','2024-08-30 03:25:41','2024-08-29 20:25:41','',36,'https://lion288slot.com/?p=56',0,'revision','',0),
(57,1,'2024-08-30 03:25:52','2024-08-29 20:25:52','','Link Alternatif Lion288','','inherit','closed','closed','','mabar-10','','','2024-08-30 03:25:54','2024-08-29 20:25:54','',37,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-9.jpg',0,'attachment','image/jpeg',0),
(58,1,'2024-08-30 03:26:23','2024-08-29 20:26:23','<h1 style=\"text-align: center;\"><strong>Link Alternatif Lion288 : Situs Game Online Populer Prize</strong></h1>','Link Alternatif Lion288','','inherit','closed','closed','','37-revision-v1','','','2024-08-30 03:26:23','2024-08-29 20:26:23','',37,'https://lion288slot.com/?p=58',0,'revision','',0),
(59,1,'2024-08-30 03:26:29','2024-08-29 20:26:29','','Daftar Lion288','','inherit','closed','closed','','mabar-11','','','2024-08-30 03:26:31','2024-08-29 20:26:31','',38,'https://lion288slot.com/wp-content/uploads/2024/08/Mabar-10.jpg',0,'attachment','image/jpeg',0),
(60,1,'2024-08-30 03:26:52','2024-08-29 20:26:52','<h1 style=\"text-align: center;\"><strong>Daftar Lion288 : Situs Dengan Games Online Terkenal Exclusive</strong></h1>','Daftar Lion288','','inherit','closed','closed','','38-revision-v1','','','2024-08-30 03:26:52','2024-08-29 20:26:52','',38,'https://lion288slot.com/?p=60',0,'revision','',0);
INSERT INTO `wp_posts` VALUES
(67,0,'2025-10-09 03:02:38','2025-10-08 20:02:38','[{\"term_slug\":\"6e926e99c95cf363c495975d2995f84f\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"78dd4d7bebdba8caab9e2ff853b2e7f3\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc.i-amphtml-embedded\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"bc368a0d8e4c8dc126d5f2d9d376b2d4\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"32cbcdc5dfac231079dd911df24735d3\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"796859c545b2b8bbc78aaf45428a856a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-fie:not(.i-amphtml-inabox)>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6c341bfced358c62f6d0507cb02c595c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f74dd261c0bbb601c9c2bebac91866cc\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed-legacy>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1103860b579a837033c4baa2578d2cde\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"05632efcdb03f348543a908bd58b5208\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d966a13a6b153c2af02d7685435e2191\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7c10c9a7a5da21835a8316b5d7e21491\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9b6bd38549de6e60687ba6ef004148ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper>body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"f49c84f57dc012e17cba9a783b3230c9\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"1b569efb19a9b26f5c0b63aa5ccb6f98\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body .i-amphtml-lightbox-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"98f7f952cdf89436d1fe8bfef9cd1dff\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body[i-amphtml-lightbox]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"5ef16232cb7c2b455dd95878bfef36ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"967f2883d59e1961f74302d034e20363\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"#i-amphtml-wrapper.i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"74cfdfb0b90c5a30a15f515ec5793db1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-scroll-disabled\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"a15e44da56c1bf79870abe5023b84a95\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-action]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d16f8f1a8797a2fe257afdf7e0770c55\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"body:not(.i-amphtml-subs-ready) [subscriptions-section]\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e1339dfd5ce836fb59343ea2280744a2\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e304f4ec3f6df028a03c5a319927aec1\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"amp-story .i-amphtml-loader-background\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"90d71052e4e57147bf5c7b77a4474890\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-autocomplete-results\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"4968113fe0bf02feb08d10681aacb08a\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-element\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1c7043094426cc546f37b75044b4c03\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-blurry-placeholder\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ab11958d7828e129dfcc6dacfa6538f6\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=nodisplay]:not(.i-amphtml-element)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7a56a2da869de0147a3128ae03b6a7ce\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"06e2f1baa02202f8b6e64ae762b52e31\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=fixed][width][height]:not(.i-amphtml-layout-fixed)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"abb7edd7244e18c2bcf1206bc5c2f63b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-responsive\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cbb02f9cbe1032d8273f84e1763271ad\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=responsive][width][height]:not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"02be1b3c96a02bb5618ee00f49035114\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b1c24de44529a455723b7f5ecfb325e0\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"424e38f6208529dda0deca9b5761551b\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"cf235538b0e34806687ec3e05217f3d7\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\"[layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic)\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c994637899b3260f3b08af60acd30b7e\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-intrinsic .i-amphtml-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"62bbfff47a671421852c730e6e75c52c\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-intrinsic-sizer\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7956acf2a344f92b5c1d642d96009eba\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-container\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n font-size: 1rem;\\n line-height: 1.5rem\\n }\\n \\n [amp-fx^=fly-in] {\\n visibility: hidden\\n }\\n \\n amp-script[nodom],\\n amp-script[sandboxed] {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\/*# sourceURL=\\/css\\/ampdoc.css*\\/\\n \\n [hidden] {\\n display: none!important\\n }\\n \\n .i-amphtml-element {\\n display: inline-block\\n }\\n \\n .i-amphtml-blurry-placeholder {\\n transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1)!important;\\n pointer-events: none\\n }\\n \\n [layout=nodisplay]:not(.i-amphtml-element) {\\n display: none!important\\n }\\n \\n .i-amphtml-layout-fixed,\\n [layout=fixed][width][height]:not(.i-amphtml-layout-fixed) {\\n display: inline-block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-responsive,\\n [layout=responsive][width][height]:not(.i-amphtml-layout-responsive),\\n [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-intrinsic,\\n [layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic) {\\n display: inline-block;\\n position: relative;\\n max-width: 100%\\n }\\n \\n .i-amphtml-layout-intrinsic .i-amphtml-sizer {\\n max-width: 100%\\n }\\n \\n .i-amphtml-intrinsic-sizer {\\n max-width: 100%;\\n display: block!important\\n }\\n \\n .i-amphtml-layout-container,\\n .i-amphtml-layout-fixed-height,\\n [layout=container],\\n [layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height) {\\n display: block;\\n position: relative\\n }\\n \\n .i-amphtml-layout-fill,\\n .i-amphtml-layout-fill.i-amphtml-notbuilt,\\n [layout=fill]:not(.i-amphtml-layout-fill),\\n body noscript>* {\\n display: block;\\n overflow: hidden!important;\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n body noscript>* {\\n position: absolute!important;\\n width: 100%;\\n height: 100%;\\n z-index: 2\\n }\\n \\n body noscript {\\n display: inline!important\\n }\\n \\n .i-amphtml-layout-flex-item,\\n [layout=flex-item]:not(.i-amphtml-layout-flex-item) {\\n display: block;\\n position: relative;\\n -ms-flex: 1 1 auto;\\n flex: 1 1 auto\\n }\\n \\n .i-amphtml-layout-fluid {\\n position: relative\\n }\\n \\n .i-amphtml-layout-size-defined {\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-layout-awaiting-size {\\n position: absolute!important;\\n top: auto!important;\\n bottom: auto!important\\n }\\n \\n i-amphtml-sizer {\\n display: block!important\\n }\\n \\n @supports (aspect-ratio:1\\/1) {\\n i-amphtml-sizer.i-amphtml-disable-ar {\\n display: none!important\\n }\\n }\\n \\n .i-amphtml-blurry-placeholder,\\n .i-amphtml-fill-content {\\n display: block;\\n height: 0;\\n max-height: 100%;\\n max-width: 100%;\\n min-height: 100%;\\n min-width: 100%;\\n width: 0;\\n margin: auto\\n }\\n \\n .i-amphtml-layout-size-defined .i-amphtml-fill-content {\\n position: absolute;\\n top: 0;\\n left: 0;\\n bottom: 0;\\n right: 0\\n }\\n \\n .i-amphtml-replaced-content,\\n .i-amphtml-screen-reader {\\n padding: 0!important;\\n border: none!important\\n }\\n \\n .i-amphtml-screen-reader {\\n position: fixed!important;\\n top: 0px!important;\\n left: 0px!important;\\n width: 4px!important;\\n height: 4px!important;\\n opacity: 0!important;\\n overflow: hidden!important;\\n margin: 0!important;\\n display: block!important;\\n visibility: visible!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 8px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 12px!important\\n }\\n \\n .i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader {\\n left: 16px!important\\n }\\n \\n .i-amphtml-unresolved {\\n position: relative;\\n overflow: hidden!important\\n }\\n \\n .i-amphtml-select-disabled {\\n -webkit-user-select: none!important;\\n -ms-user-select: none!important;\\n user-select: none!important\\n }\\n \\n .i-amphtml-notbuilt,\\n [layout]:not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n position: relative;\\n overflow: hidden!important;\\n color: transparent!important\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,\\n [layout]:not([layout=container]):not(.i-amphtml-element)>*,\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>*,\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>* {\\n display: none\\n }\\n \\n amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content {\\n display: block\\n }\\n \\n .i-amphtml-notbuilt:not(.i-amphtml-layout-container),\\n [layout]:not([layout=container]):not(.i-amphtml-element),\\n [width][height][heights]:not([layout]):not(.i-amphtml-element),\\n [width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element) {\\n color: transparent!important;\\n line-height: 0!important\\n }\\n \\n .i-amphtml-ghost {\\n visibility: hidden!important\\n }\\n \\n .i-amphtml-element>[placeholder],\\n [layout]:not(.i-amphtml-element)>[placeholder],\\n [width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],\\n [width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder] {\\n display: block;\\n line-height: normal\\n }\\n \\n .i-amphtml-element>[placeholder].amp-hidden,\\n .i-amphtml-element>[placeholder].hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element:not(.amp-notsupported)>[fallback],\\n .i-amphtml-layout-container>[placeholder].amp-hidden,\\n .i-amphtml-layout-container>[placeholder].hidden {\\n display: none\\n }\\n \\n .i-amphtml-layout-size-defined>[fallback],\\n .i-amphtml-layout-size-defined>[placeholder] {\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n z-index: 1\\n }\\n \\n amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder] {\\n z-index: auto\\n }\\n \\n .i-amphtml-notbuilt>[placeholder] {\\n display: block!important\\n }\\n \\n .i-amphtml-hidden-by-media-query {\\n display: none!important\\n }\\n \\n .i-amphtml-element-error {\\n background: #11a54f;\\n color: #fff!important;\\n position: relative!important\\n }\\n \\n .i-amphtml-element-error:before {\\n content: attr(error-message)\\n }\\n \\n i-amp-scroll-container,\\n i-amphtml-scroll-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n display: block\\n }\\n \\n i-amp-scroll-container.amp-active,\\n i-amphtml-scroll-container.amp-active {\\n overflow: auto;\\n -webkit-overflow-scrolling: touch\\n }\\n \\n .i-amphtml-loading-container {\\n display: block!important;\\n pointer-events: none;\\n z-index: 1\\n }\\n \\n .i-amphtml-notbuilt>.i-amphtml-loading-container {\\n display: block!important\\n }\\n \\n .i-amphtml-loading-container.amp-hidden {\\n visibility: hidden\\n }\\n \\n .i-amphtml-element>[overflow] {\\n cursor: pointer;\\n position: relative;\\n z-index: 2;\\n visibility: hidden;\\n display: initial;\\n line-height: normal\\n }\\n \\n .i-amphtml-layout-size-defined>[overflow] {\\n position: absolute\\n }\\n \\n .i-amphtml-element>[overflow].amp-visible {\\n visibility: visible\\n }\\n \\n template {\\n display: none!important\\n }\\n \\n .amp-border-box,\\n .amp-border-box *,\\n .amp-border-box :after,\\n .amp-border-box :before {\\n box-sizing: border-box\\n }\\n \\n amp-pixel {\\n display: none!important\\n }\\n \\n amp-analytics,\\n amp-auto-ads,\\n amp-story-auto-ads {\\n position: fixed!important;\\n top: 0!important;\\n width: 1px!important;\\n height: 1px!important;\\n overflow: hidden!important;\\n visibility: hidden\\n }\\n \\n html.i-amphtml-fie>amp-analytics {\\n position: initial!important\\n }\\n \\n [visible-when-invalid]:not(.visible),\\n form [submit-error],\\n form [submit-success],\\n form [submitting] {\\n display: none\\n }\\n \\n amp-accordion {\\n display: block!important\\n }\\n \\n @media (min-width:1px) {\\n :where(amp-accordion>section)>:first-child {\\n margin: 0;\\n background-color: #efefef;\\n padding-right: 20px;\\n border: 1px solid #dfdfdf\\n }\\n :where(amp-accordion>section)>:last-child {\\n margin: 0\\n }\\n }\\n \\n amp-accordion>section {\\n float: none!important\\n }\\n \\n amp-accordion>section>* {\\n float: none!important;\\n display: block!important;\\n overflow: hidden!important;\\n position: relative!important\\n }\\n \\n amp-accordion,\\n amp-accordion>section {\\n margin: 0\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section>:last-child {\\n display: none!important\\n }\\n \\n amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child {\\n display: block!important\\n }\\n \\/*# sourceURL=\\/css\\/ampshared.css*\\/\\n \",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"85f1a444eefbab93f26482896ef0517d\",\"data\":{\"code\":\"CSS_DISALLOWED_SELECTOR\",\"type\":\"css_error\",\"css_selector\":\".i-amphtml-layout-fixed-height\",\"node_name\":\"style\",\"parent_name\":\"head\",\"node_attributes\":{\"amp-runtime\":\"\",\"i-amphtml-version\":\"012203172113000\"},\"text\":\"\\n html {\\n overflow-x: hidden!important\\n }\\n \\n html.i-amphtml-fie {\\n height: 100%!important;\\n width: 100%!important\\n }\\n \\n html:not([amp4ads]),\\n html:not([amp4ads]) body {\\n height: auto!important\\n }\\n \\n html:not([amp4ads]) body {\\n margin: 0!important\\n }\\n \\n body {\\n -webkit-text-size-adjust: 100%;\\n -moz-text-size-adjust: 100%;\\n -ms-text-size-adjust: 100%;\\n text-size-adjust: 100%\\n }\\n \\n html.i-amphtml-singledoc.i-amphtml-embedded {\\n -ms-touch-action: pan-y pinch-zoom;\\n touch-action: pan-y pinch-zoom\\n }\\n \\n html.i-amphtml-fie>body,\\n html.i-amphtml-singledoc>body {\\n overflow: visible!important\\n }\\n \\n html.i-amphtml-fie:not(.i-amphtml-inabox)>body,\\n html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body {\\n position: relative!important\\n }\\n \\n html.i-amphtml-ios-embed-legacy>body {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important\\n }\\n \\n html.i-amphtml-ios-embed {\\n overflow-y: auto!important;\\n position: static\\n }\\n \\n #i-amphtml-wrapper {\\n overflow-x: hidden!important;\\n overflow-y: auto!important;\\n position: absolute!important;\\n top: 0!important;\\n left: 0!important;\\n right: 0!important;\\n bottom: 0!important;\\n margin: 0!important;\\n display: block!important\\n }\\n \\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,\\n html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper {\\n -webkit-overflow-scrolling: touch!important\\n }\\n \\n #i-amphtml-wrapper>body {\\n position: relative!important;\\n border-top: 1px solid transparent!important\\n }\\n \\n #i-amphtml-wrapper+body {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper+body .i-amphtml-lightbox-element,\\n #i-amphtml-wrapper+body[i-amphtml-lightbox] {\\n visibility: hidden\\n }\\n \\n #i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element {\\n visibility: visible\\n }\\n \\n #i-amphtml-wrapper.i-amphtml-scroll-disabled,\\n .i-amphtml-scroll-disabled {\\n overflow-x: hidden!important;\\n overflow-y: hidden!important\\n }\\n \\n amp-instagram {\\n padding: 54px 0px 0px!important;\\n background-color: #fff\\n }\\n \\n amp-iframe iframe {\\n box-sizing: border-box!important\\n }\\n \\n [amp-access][amp-access-hide] {\\n display: none\\n }\\n \\n [subscriptions-dialog],\\n body:not(.i-amphtml-subs-ready) [subscriptions-action],\\n body:not(.i-amphtml-subs-ready) [subscriptions-section] {\\n display: none!important\\n }\\n \\n amp-experiment,\\n amp-live-list>[update] {\\n display: none\\n }\\n \\n amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden {\\n display: none!important\\n }\\n \\n amp-list [fetch-error],\\n amp-list[load-more] [load-more-button],\\n amp-list[load-more] [load-more-end],\\n amp-list[load-more] [load-more-failed],\\n amp-list[load-more] [load-more-loading] {\\n display: none\\n }\\n \\n amp-list[diffable] div[role=list] {\\n display: block\\n }\\n \\n amp-story-page,\\n amp-story[standalone] {\\n min-height: 1px!important;\\n display: block!important;\\n height: 100%!important;\\n margin: 0!important;\\n padding: 0!important;\\n overflow: hidden!important;\\n width: 100%!important\\n }\\n \\n amp-story[standalone] {\\n background-color: #000!important;\\n position: relative!important\\n }\\n \\n amp-story-page {\\n background-color: #757575\\n }\\n \\n amp-story .amp-active>div,\\n amp-story .i-amphtml-loader-background {\\n display: none!important\\n }\\n \\n amp-story-page:not(:first-of-type):not([distance]):not([active]) {\\n transform: translateY(1000vh)!important\\n }\\n \\n amp-autocomplete {\\n position: relative!important;\\n display: inline-block!important\\n }\\n \\n amp-autocomplete>input,\\n amp-autocomplete>textarea {\\n padding: 0.5rem;\\n border: 1px solid rgba(0, 0, 0, 0.33)\\n }\\n \\n .i-amphtml-autocomplete-results,\\n amp-autocomplete>input,\\n amp-autocomplete>